Define InTouch Access Anywhere configuration groups
- Last UpdatedJul 17, 2024
- 1 minute read
All users share configuration settings specified in the config.js configuration file. Special settings can override global settings for certain groups of users. Multiple configuration groups are defined in the configuration file.
For example, if the Marketing group needs clipboard redirection and printing enabled, change config.js as follows:
var defaults = { / this already exists in the file
…
"Marketing": {// bold text are new additions
printing:true,
clipboard:true
},
};
Note: The quotation marks surrounding Marketing must be identical. If necessary, delete them and re-type them if the text was copied from another source. Also, the last setting of the configuration group should not have a ',' at the end. This comma is placed after the closing bracket '}'.
In the URL to be used by the Marketing group, add the settings parameter:
http://<machine name>:8080/InTouch Access Anywhere/start.html?settings=Marketing