A typical scenario is that the IT administrator creates a macOS script file that configures specific ClickShare parameters.
The table below lists the supported parameters that can be used when deploying the ClickShare Desktop App (PKG) file on macOS devices (how-to, see KB 13167).
Supported parameters:
Parameter | Accepted values | Description | Available in |
ACCEPT_EULA | YES | Mandatory parameter | v4.40+ |
BETA_PROGRAM | YES, NO | Optional parameter Default value: YES To control the “Beta Program” UI option | v4.40+ |
PRODUCT_USAGE_ANALYTICS | YES, NO | Optional parameter Default value: YES To turn on and off “Usage Statistics” | v4.40+ |
DEFAULT_UI | MINI, LARGE | Optional parameter Default value: Not Set To decide the UI style of the app | v4.40+ |
AUTO_UPDATE | YES, NO | Optional parameter
Default value: YES To control if the app will be automatically updated or not | v4.40+ |
Script examples:
defaults write /Library/Preferences/com.barco.clickshare.plist PRODUCT_USAGE_ANALYTICS -string "NO"
# Installation with disabling Beta Program
defaults write /Library/Preferences/com.barco.clickshare.plist BETA_PROGRAM -string "NO"
# Installation with Mini UI
defaults write /Library/Preferences/com.barco.clickshare.plist DEFAULT_UI -string "MINI"
# Installation with disabling Auto Update
defaults write /Library/Preferences/com.barco.clickshare.plist AUTO_UPDATE -string "NO"