/build/static/layout/Breadcrumb_cap_w.png

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 14.3k  |  Created: 02/15/2013 by: dnnelson1969

Average Rating: 0
TeamViewer has 1 inventory records, 15 Questions, 2 Blogs and 2 links. Please help add to this by sharing more!

Deployment Tips (0)

Most Common Setup Type
Windows Installer (MSI)
Average Package Difficulty Rating
Rated 2 / 5 (Somewhat Easy) based on 1 ratings
Most Commonly Reported Deployment Method
Windows Installer with Custom Transform (MST)

Deployment Tip Summary

I just did the version 8 Full, fairly easy with a Corporate License. People seem to have problems with the news letter popup, after you shutdown the program. That's gone if you purchase and enter a license. Only small problem was getting rid of the desktopshortcut. Couldn't seem to find anything relevant creating an MST. I ended up creating a quick and dirty script. Steps is pretty much the same as version 7: Install on your testmachine. Do the settings you want, set a password, activate the license key if purchased etc. Then export it to .reg your Settings in TeamViewer- Advanced -> Show advanced options -> Export options to a *.reg file Make sure it's named TeamViewer_Settings.reg and put it in the same pathfolder as your msi. Create some script to install with. I used Powershell, installing with the parameters I wanted and a small loop to detect the the TeamViewer desktopshortcut in the public account and deleting it: Start-Process msiexec.exe -ArgumentList "/i Teamviewer.msi /qb-! /L*v tv.log" -Wait -PassThru $ChkFile = "$env:public\Desktop\TeamViewer 8.lnk" $FileExists = (Test-Path $ChkFile -PathType Leaf) $i = 0 Do { if ($FileExists -eq $False) { $FileExists = (Test-Path $ChkFile -PathType Leaf) Start-Sleep -Milliseconds 100 #add small delay each loop $i++ #increment $i to prevent endless loop } } Until ($FileExists -eq $True -or $i -ge 600) # if true, delete shortcut, or $i >= 600(1min) exit script if ($FileExists -eq $True) { rm $ChkFile } Deployed using SCCM, on machines with users with limited rights. Seems to be working as intended :-) *edit* Teamviewer_Host is the actually same method.. just remember to edit script for the right msi and shortcut.

No deployment tips yet. Be the first to add one!

Inventory Records (1)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Versions

TeamViewer

Version

8.0.16642

Questions & Answers (15)

Questions & Answers related to TeamViewer TeamViewer

0
ANSWERS
0
ANSWERS
1
ANSWERS
0
ANSWERS
6
ANSWERS
1
ANSWERS
1
ANSWERS
1
ANSWERS
2
ANSWERS
4
ANSWERS
2
ANSWERS

Blogs (2)

Blog posts related to TeamViewer TeamViewer

blog

Reviews (0)

Reviews related to TeamViewer TeamViewer

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ