When downloading the Windows client from the web portal, the downloaded EXE package name will be decorated with the access point for the user. when a user logs in after the EXE package is installed, they will get the access point auto-filled in.
In the common scenario where an admin needs to remotely deploy the windows client to end-users machines automatically, the EXE package needs to be downloaded as one of the users. The downloaded EXE package will have a name like the one below:
(412752078_1_636750868145446272.Triofox.com_4881A449811111)_CSWinClient.exe
Here, 412752078_1_636750868145446272.Triofox.com is the access point information.
The section after the access point information, 4881A449811111, is unique token information related to the user who downloads the package. This should be removed when configuring the installer for remote deployment.
In the following example, the EXE package name to use on other machines will be:
(412752078_1_636750868145446272.triofox.com)_CSWinClient.exe
How to silently install/uninstall the Triofox windows client:
In the window command prompt (Elevated admin): Execute the web installer EXE with the following parameters:
SilentInstall:true AcceptEula:true
For example:
(412752078_1_636750868145446272.Triofox.com)_CSWinClient.exe SilentInstall:true AcceptEula:true
PowerShell:
Start-Process -FilePath (412752078_1_636750868145446272.Triofox.com)_CSWinClient.exe -ArgumentList 'SilentInstall:true AcceptEULA:true'
. To uninstall the windows client silently, go to the installation folder and run
WCClientInstaller.exe -u silent:true
Comments
0 comments
Please sign in to leave a comment.