TrueSync can be silently deployed to multiple devices across an organization. System administrators can remotely install, upgrade, or uninstall TrueSync using enterprise software deployment tools or other managed deployment mechanisms.
For Windows
Silent Installation and Upgrade
Open Command Prompt as an administrator.
Run the following command to install, repair, or upgrade TrueSync:
msiexec.exe /i "<path_to_installer>" /quiet
Example:
If the installer is located at C:\Users\Administrator\Downloads\ZohoWorkDriveTS.msi, run:
msiexec.exe /i "C:\Users\Administrator\Downloads\ZohoWorkDriveTS.msi" /quiet
Silent Uninstallation
Run the following command to uninstall TrueSync:
msiexec.exe /x "<path_to_installer>" /quiet
Example:
If the installer is located at C:\Users\Administrator\Downloads\ZohoWorkDrive.TSmsi, run:
msiexec.exe /x "C:\Users\Administrator\Downloads\ZohoWorkDriveTS.msi" /quiet
For macOS
Silent Installation and Upgrade
Open Terminal.
Run the following command:
sudo installer -pkg "/<path_to_package>" -target /Applications
Example:
If the installer is downloaded to the Downloads folder of your Mac, run:
sudo installer -pkg "/Users/Sofia Deluca/Downloads/ZohoWorkDriveTS.pkg" -target /Applications