If your company uses TeamViewer to support remote clients, you may wish to add the TeamViewer QuickJoin support tool into your Windows 10 Image. Including this tool in your image will remove the need for remote clients to download this from the TeamViewer website each time they need support. You can customise the QuickJoin tool where you can modify things like the Logo, Title, Description etc.
TeamViewer QuickJoin does not come with a bundled installer, it is simply a small executable. My aim was to add the TeamViewer quick support tool onto all laptops during build, the shortcut is then automatically placed in the Windows 10 start menu during imaging. The following is the process i followed to get this working.
Firstly, the end product

1. Customise your QuickJoin tool to your liking, and then download
- QuickJoin executable.
- Create a shortcut for named “Support”
Target = “C:\ProgramData\TeamViewer\TeamViewerQS_en-idcbydd25.exe”
Path = “C:\ProgramData\TeamViewer” - Create a simple batch/cmd file with this place the following, in this example i have called it copyTV.cmd.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM – Copies TeamViewe Files for Start Menu | |
md "C:\ProgramData\TeamViewer" | |
xcopy "%~dp0TeamViewerQS_en-idcbydd25.exe" "C:\ProgramData\TeamViewer" /I /E /Y | |
xcopy "%~dp0Support.lnk" "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs" /I /E /Y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<start:DesktopApplicationTile Size="2×2" Column="2" Row="2" DesktopApplicationLinkPath="%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Support.lnk" /> |
https://gist.github.com/danjpadgett/f233043676be9685be5c29977f5899d8
