Install inSync on Windows laptops
Scenario 1: You can access inSync client executable on a shared network
You can run the following command by using an automated installation tool:
msiexec /qn /i "<path to inSync msi>" TOKENV2='<mass deployment token>' SERVERLIST="<IP address of inSync Server>:<Backup/sync port>"
For example
msiexec /qn /i "\\sharelocation\inSync.msi" TOKENV2='33-bb0af8c55da3f9dd32e6ce6ad23e97b5d9951ae6fcf37ee062754ceabc76cf69' SERVERLIST="192.168.50.236:443"
Note: You must follow the exact usage of single (') and double quotation marks (") as provided in the example.
Scenario 2: You can access the inSync Master through a fixed proxy server
You can run the following command by using an automated installation tool:
msiexec /qn /i "<path to inSync msi>" TOKENV2='<mass deployment token>' SERVERLIST="<IP address of inSync Server>:<Backup/sync port>" WPAD_URL="<URL of PAC file>" PROXY_TYPE="<type of proxy used>" PROXY_SERVER="<IP address of proxy server>:<port number>" SYSTEM_PROXY="1" USERSHAREHOME="<new_location>"
For example
msiexec /qn /i "\\sharelocation\inSync.msi" TOKENV2='33-bb0af8c55da3f9dd32e6ce6ad23e97b5d9951ae6fcf37ee062754ceabc76cf69' SERVERLIST="192.168.50.236:443" PROXY_SERVER="192.168.54.100:1080" PROXY_TYPE="socks5" USERSHAREHOME="E:\"
Note: You must follow the exact usage of single (') and double quotation marks (") as provided in the example.
Scenario 3: You want to hide the inSync client shortcut
You can use the HEADLESS parameter. You can run the following command by using an automated installation tool:
Note: If you have disabled Show inSync icon in system tray for the selected profile, ensure that you use HEADLESS parameter in the script. If you do not use this parameter, inSync client icon continues to appear in the device system trays for the user laptops until the inSync client installation completes. For more information, see Enable inSync notifications.
msiexec /qn /i "<path to inSync msi>" TOKENV2='<mass deployment token>' SERVERLIST="<IP address of inSync Server>:<Backup/sync port>" HEADLESS="1"
For example
msiexec /qn /i "<path to inSync msi>" TOKENV2='33-bb0af8c55da3f9dd32e6ce6ad23e97b5d9951ae6fcf37ee062754ceabc76cf69' SERVERLIST="192.168.50.236:443" HEADLESS="1"
Note: You must follow the exact usage of single (') and double quotation marks (") as provided in the example.
Scenario 4: You want to use language parameter for the inSync client
You can install the inSync client using one of the following languages:
French (fr), German (de), English (en), Japanese (ja).
You can run the following command by using an automated installation tool:
msiexec /qn /i "<path to inSync msi>" TOKENV2='<mass deployment token>' SERVERLIST="<IP address of inSync Server>:<Backup/sync port>" LANGUAGE="<en, fr, de, ja>"
For example
msiexec /qn /i "\\sharelocation\inSync.msi" TOKENV2='33-bb0af8c55da3f9dd32e6ce6ad23e97b5d9951ae6fcf37ee062754ceabc76cf69' SERVERLIST="192.168.50.236:443" LANGUAGE="en"
Note: You must follow the exact usage of single (') and double quotation marks (") as provided in the example.