popup window at the end of TV14 host installation - workaround or another way to fix?

Options
pksupport
pksupport Posts: 1
edited May 2023 in General questions

Im currently trying to deploy TV14 host installation to my clients with this script:

@echo off
if EXIST "C:\Program Files (x86)\TeamViewer\TeamViewer.exe" GOTO END
msiexec /i "%~dp0TeamViewer_Host.msi" /qn /L*V "%temp%\teamviewer_installation.log" CUSTOMCONFIGID=******* DESKTOPSHORTCUTS=1 ASSIGNMENTOPTIONS="--reassign --alias %COMPUTERNAME%" IMPORTREGFILE=1

The installation completes successfully but ends with a popup window which i would like to suppress, is there a way to fix this with a script or any other tools? What happens if the end user press "cancel"? Will there be any troubles further ahead?

TeamViewer-window.PNG

EDIT: Apperently the problem was that if you want to use the custom deployment you HAVE to use APITOKEN. Added my APITOKEN to my script and everything worked out.