TeamViewer 14 Silent Installation
I am trying to install Teamviewer 14. I have created a zip file that contains the .msi file and settings registry file and uploaded them to KACE. I am deploying the uploaded files using the following syntax: msiexec /i "TeamViewer_Host.msi" /qn
TeamViewer installs, but none of the settings are present. Any suggestions?
Thank you!
Answers (2)
That's the command line.
msiexec.exe /i TeamViewer_host.msi /qn CUSTOMCONFIGID=xxxxxx DESKTOPSHORTCUTS=1 IMPORTREGFILE=1 ASSIGNMENTOPTIONS="--policy POLICY-NAME" ASSIGNMENTOPTIONS="--group GROUP-NAME" ASSIGNMENTOPTIONS="--grant-easy-access" APITOKEN=XXXX
IMPORTREGFILE=1 will import the reg file.
TeamViewer_Settings.reg is the file you save from the TeamViewer host and have it in the same folder with the installer. (but this is optional if you have a Policy in place). I still would strongly recommend to use the reg file because sometimes TeamViewer loses the policy settings on the agent (or host) and the settings go to default, which is a nightmare from security point of view (if you use white list security options). Using the file, the default is the file's configuration, if the policy fails, the default is the one you made.
CUSTOMCONFIGID=xxxxxx and APITOKEN=XXXX you get them from the TeamViewer webpage console policy.
ASSIGNMENTOPTIONS="--policy POLICY-NAME" and ASSIGNMENTOPTIONS="--group GROUP-NAME"
You will need to create a policy and a group (folder) in the console.
That's it.