Webroot offers a script to install the macOS agent to multiple Apple devices. Download the script using this link:
https://download.webroot.com/MAC/Install/installMacWSA.sh
After downloading, you will need to make the file executable before running it. To make it executable for all users, use the command:
chmod +x installMacWSA.sh
These are required and optional command parameters that are modified inside the script to control aspects of the installation:
- Required:
- pkg – location of the WSA Mac PKG file
- Format: --pkg <pkg/location>
- Optional:
- keycode – providing the keycode prevents the keycode prompt from being shown during the installation process
- Format: -keycode=<keycode>
- silent – makes the installation silent
- suppress_auto_launch - suppresses auto-launching the client after installation and prevents the FDA setting dialogue, ignored if the keycode parameter is not passed
- Format: -suppress_auto_launch=true
- proxy_auth, proxy_host, proxy_port, proxy_user, proxy_pass – designates proxy install arguments including authorization method, host, port, user and password
- Format: proxy_auth=auth_any_0 -proxy_host=<host> -proxy_port=<port> -proxy_user=<user> -proxy_pass=<password>
Example command:
sudo ./installMacWSA.sh --pkg=WSAMAC.pkg -silent=true -suppress_auto_launch=true -keycode=XXXX-XXXX-XXXX-XXXX -proxy_auth=auth_basic_1 -proxy_host=proxy.proxy.com -proxy_port=8080 -proxy_user=proxyuser.com -proxy_pass=proxypass
IMPORTANT NOTE: These instructions contain an example shell script and are provided as-is. It should only be used by those experienced with scripts and should be fully tested before use. Webroot Support does not troubleshoot or support scripts and will not answer script related questions.