Disabling a Workspace module in VMware Horizon Workspace 1.x
August 16, 2013 Leave a comment
After installing Horizon Workspace you have to activate modules with a green button in the homepage of administration.
If you activate one by mistake though you have no way to deactivate it.
In KB2056300 there is a procedure which explains how to deactivate modules:
If a browser interface to the PostgreSQL database is available:
- Open a browser and connect to the PostgreSQL database.
- Connect to https://DatabaseServer:8443.
- Log in using your credentials.
- Expand the databases (on the left side of the screen).
- Select saas.
- Click Enter SQL.
- Paste the appropriate script in the SQL Script. For a list of scripts, see below.
- Click Execute.
If browser access to the PostgreSQL database is not available:
Log into the Appliance or virtual machine where the PostgreSQL database is installed as root.
su postgres
cd /opt/vmware/vpostgres/current/bin
./psql saas
Type in the appropriate script line from the list below and end it with a ; (semicolon)
/q
Scripts
- To disable the View module, run this query:
update saas.”Module” set “enabled”=FALSE where “moduleName”=’View’
- To disable Web Applications module, run this query:
update saas.”Module” set “enabled”=FALSE where “moduleName”=’SaaS’
- To disable the Mobile module, run this query:
update saas.”Module” set “enabled”=FALSE where “moduleName”=’Mobile’
- To disable ThinApp packages module, run the following query:
update saas.”Module” set “enabled”=FALSE where “moduleName”=’ThinApp’
Recent Comments