Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
230,184
Downloads of v 9.0.62537.0:
5
Last Update:
23 Feb 2021
Package Maintainer(s):
Software Author(s):
- TeamViewer GmbH
Tags:
teamviewer teamviewerhost team viewer remote control host server admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

TeamViewer Host
This is not the latest version of TeamViewer Host available.
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
230,184
Downloads of v 9.0.62537.0:
5
Maintainer(s):
Software Author(s):
- TeamViewer GmbH
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
TeamViewer Host 9.0.62537.0
This is not the latest version of TeamViewer Host available.
All Checks are Passing
2 Passing Test
To install TeamViewer Host, run the following command from the command line or from PowerShell:
To upgrade TeamViewer Host, run the following command from the command line or from PowerShell:
To uninstall TeamViewer Host, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download teamviewer.host --internalize --version=9.0.62537.0 --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade teamviewer.host -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade teamviewer.host -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure teamviewer.host installed
win_chocolatey:
name: teamviewer.host
state: present
version: 9.0.62537.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'teamviewer.host' do
action :install
version '9.0.62537.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: teamviewer.host,
Version: 9.0.62537.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller teamviewer.host
{
Name = 'teamviewer.host'
Ensure = 'Present'
Version = '9.0.62537.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'teamviewer.host':
provider => 'chocolatey',
ensure => '9.0.62537.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install teamviewer.host version="9.0.62537.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 23 Feb 2021.
TeamViewer Host is running as a system service and is used for 24/7 access to remote computers, including login/logout and remote reboot - optimized for server maintenance or home-office access
$ErrorActionPreference = 'Stop'
$packageName = 'teamviewer.host'
$url32 = 'https://download.teamviewer.com/download/version_9x/TeamViewer_Host_Setup.exe'
$checksum32 = 'e44c3916088a0a41b02041a7ab42c59987bc5e08678faa316848b7b267e20c54'
$packageArgs = @{
packageName = $packageName
fileType = 'EXE'
url = $url32
checksum = $checksum32
checksumType = 'sha256'
silentArgs = '/S'
validExitCodes = @(0)
registryUninstallerKey = $packageName
}
Install-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
- teamviewer.host.9.0.62537.0.nupkg (e59a71435472) - ## / 62
- TeamViewer_Host_Setup.exe (e44c3916088a) - ## / 69
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
TeamViewer Host 15.16.8.0 | 9389 | Tuesday, March 23, 2021 | Approved |
TeamViewer Host 15.15.5.0 | 13774 | Tuesday, February 23, 2021 | Approved |
TeamViewer Host 15.14.5.0 | 10623 | Monday, February 1, 2021 | Approved |
TeamViewer Host 15.14.3.0 | 3360 | Tuesday, January 26, 2021 | Approved |
TeamViewer Host 15.13.6.0 | 10751 | Wednesday, December 16, 2020 | Approved |
TeamViewer Host 15.12.4.0 | 7364 | Tuesday, November 24, 2020 | Approved |
TeamViewer Host 15.11.6.0 | 8856 | Tuesday, October 27, 2020 | Approved |
TeamViewer Host 15.10.5.0 | 9845 | Tuesday, September 22, 2020 | Approved |
TeamViewer Host 15.9.4.0 | 33275 | Friday, August 28, 2020 | Approved |
TeamViewer Host 15.8.3.0 | 9561 | Tuesday, July 28, 2020 | Approved |
TeamViewer Host 15.7.7.0 | 3798 | Thursday, July 9, 2020 | Approved |
TeamViewer Host 15.7.6.0 | 2975 | Tuesday, June 23, 2020 | Approved |
TeamViewer Host 15.6.7.0 | 4223 | Tuesday, May 26, 2020 | Approved |
TeamViewer Host 15.5.6.0 | 1439 | Wednesday, May 20, 2020 | Approved |
TeamViewer Host 15.5.3.0 | 3774 | Tuesday, April 28, 2020 | Approved |
TeamViewer Host 15.4.8332.0 | 2779 | Thursday, April 9, 2020 | Approved |
TeamViewer Host 15.4.4445.0 | 2596 | Tuesday, March 24, 2020 | Approved |
TeamViewer Host 15.3.8497.0 | 3154 | Tuesday, March 10, 2020 | Approved |
TeamViewer Host 15.3.2682.0 | 2545 | Tuesday, February 25, 2020 | Approved |
TeamViewer Host 15.2.2756.0 | 3673 | Friday, January 31, 2020 | Approved |
TeamViewer Host 15.1.3937.0 | 8600 | Saturday, December 21, 2019 | Approved |
TeamViewer Host 14.7.48657.0 | 6 | Tuesday, March 23, 2021 | Approved |
TeamViewer Host 14.7.48644.0 | 13 | Wednesday, March 3, 2021 | Approved |
TeamViewer Host 14.7.48507.0 | 20 | Tuesday, November 24, 2020 | Approved |
TeamViewer Host 14.7.48350.0 | 33 | Monday, July 27, 2020 | Approved |
TeamViewer Host 14.7.48298.0 | 41 | Wednesday, June 24, 2020 | Approved |
TeamViewer Host 14.7.39531.0 | 54 | Saturday, April 18, 2020 | Approved |
TeamViewer Host 14.7.13736.0 | 1254 | Thursday, December 12, 2019 | Approved |
TeamViewer Host 14.7.1965.0 | 6722 | Tuesday, October 22, 2019 | Approved |
TeamViewer Host 14.6.4835.0 | 2075 | Friday, September 27, 2019 | Approved |
TeamViewer Host 14.6.2452.0 | 1352 | Tuesday, September 17, 2019 | Approved |
TeamViewer Host 14.5.5819.0 | 1704 | Friday, August 30, 2019 | Approved |
TeamViewer Host 14.5.1691.0 | 1401 | Tuesday, August 20, 2019 | Approved |
TeamViewer Host 14.4.2669.0 | 2864 | Wednesday, July 10, 2019 | Approved |
TeamViewer Host 14.3.4730.0 | 3236 | Thursday, June 6, 2019 | Approved |
TeamViewer Host 14.2.8352.0 | 3895 | Wednesday, April 17, 2019 | Approved |
TeamViewer Host 14.2.2558.0 | 3045 | Tuesday, March 19, 2019 | Approved |
TeamViewer Host 14.1.18533.0 | 2154 | Wednesday, February 27, 2019 | Approved |
TeamViewer Host 14.1.9025.0 | 2929 | Tuesday, January 22, 2019 | Approved |
TeamViewer Host 14.1.3399.0 | 2696 | Thursday, December 13, 2018 | Approved |
TeamViewer Host 14.0.13880.0 | 2456 | Thursday, November 15, 2018 | Approved |
TeamViewer Host 14.0.13488.0 | 739 | Tuesday, November 13, 2018 | Approved |
TeamViewer Host 14.0.12356.0 | 125 | Wednesday, November 14, 2018 | Approved |
TeamViewer Host 13.2.36223.0 | 23 | Tuesday, March 23, 2021 | Approved |
TeamViewer Host 13.2.36222.0 | 12 | Tuesday, February 23, 2021 | Approved |
TeamViewer Host 13.2.36221.0 | 31 | Tuesday, November 24, 2020 | Approved |
TeamViewer Host 13.2.36220.0 | 40 | Monday, July 27, 2020 | Approved |
TeamViewer Host 13.2.36219.0 | 50 | Thursday, June 25, 2020 | Approved |
TeamViewer Host 13.2.36218.0 | 90 | Tuesday, April 21, 2020 | Approved |
TeamViewer Host 13.2.36217.0 | 112 | Thursday, December 12, 2019 | Approved |
TeamViewer Host 13.2.36216.0 | 115 | Tuesday, October 22, 2019 | Approved |
TeamViewer Host 13.2.36215.0 | 117 | Thursday, April 25, 2019 | Approved |
TeamViewer Host 13.2.26558.0 | 2552 | Friday, October 12, 2018 | Approved |
TeamViewer Host 13.2.14327 | 3466 | Friday, August 17, 2018 | Approved |
TeamViewer Host 13.2.5287 | 2319 | Friday, July 27, 2018 | Approved |
TeamViewer Host 13.1.3629 | 2220 | Wednesday, April 4, 2018 | Approved |
TeamViewer Host 13.1.1548 | 797 | Tuesday, March 13, 2018 | Approved |
TeamViewer Host 13.0.6447 | 1677 | Tuesday, December 19, 2017 | Approved |
TeamViewer Host 13.0.5640 | 543 | Tuesday, December 12, 2017 | Approved |
TeamViewer Host 12.0.95388 | 859 | Monday, March 19, 2018 | Approved |
TeamViewer Host 12.0.90922 | 4031 | Wednesday, December 20, 2017 | Approved |
TeamViewer Host 12.0.89970 | 283 | Wednesday, December 13, 2017 | Approved |
TeamViewer Host 12.0.83369 | 1922 | Monday, September 4, 2017 | Approved |
TeamViewer Host 12.0.82216 | 528 | Thursday, August 24, 2017 | Approved |
TeamViewer Host 12.0.81460 | 494 | Tuesday, August 22, 2017 | Approved |
TeamViewer Host 12.0.78313 | 1511 | Wednesday, May 31, 2017 | Approved |
TeamViewer Host 12.0.75813 | 1264 | Tuesday, March 21, 2017 | Approved |
TeamViewer Host 12.0.72365 | 1116 | Thursday, December 22, 2016 | Approved |
TeamViewer Host 12.0.62570.0 | 21 | Tuesday, March 23, 2021 | Approved |
TeamViewer Host 12.0.62534.0 | 6 | Tuesday, February 23, 2021 | Approved |
TeamViewer Host 12.0.62416.0 | 9 | Tuesday, November 24, 2020 | Approved |
TeamViewer Host 12.0.62261.0 | 22 | Monday, July 27, 2020 | Approved |
TeamViewer Host 12.0.62212.0 | 23 | Thursday, June 25, 2020 | Approved |
TeamViewer Host 12.0.54777.0 | 82 | Tuesday, April 21, 2020 | Approved |
TeamViewer Host 12.0.53938.0 | 27 | Friday, April 17, 2020 | Approved |
TeamViewer Host 12.0.50196.0 | 88 | Thursday, April 25, 2019 | Approved |
TeamViewer Host 11.0.62572.0 | 19 | Tuesday, March 23, 2021 | Approved |
TeamViewer Host 11.0.62535.0 | 4 | Tuesday, February 23, 2021 | Approved |
TeamViewer Host 11.0.62429.0 | 48 | Tuesday, November 24, 2020 | Approved |
TeamViewer Host 11.0.62262.0 | 155 | Monday, July 27, 2020 | Approved |
TeamViewer Host 11.0.62240.0 | 176 | Thursday, June 25, 2020 | Approved |
TeamViewer Host 11.0.55457.0 | 31 | Tuesday, April 21, 2020 | Approved |
TeamViewer Host 11.0.53959.0 | 52 | Friday, April 17, 2020 | Approved |
TeamViewer Host 11.0.27434.0 | 157 | Thursday, December 12, 2019 | Approved |
TeamViewer Host 11.0.17789.0 | 67 | Tuesday, October 22, 2019 | Approved |
TeamViewer Host 11.0.2150.0 | 261 | Thursday, January 17, 2019 | Approved |
TeamViewer Host 10.0.62536.0 | 5 | Tuesday, February 23, 2021 | Approved |
TeamViewer Host 10.0.62443.0 | 6 | Tuesday, November 24, 2020 | Approved |
TeamViewer Host 10.0.62265.0 | 22 | Monday, July 27, 2020 | Approved |
TeamViewer Host 10.0.62238.0 | 26 | Thursday, June 25, 2020 | Approved |
TeamViewer Host 10.0.55460.0 | 46 | Tuesday, April 21, 2020 | Approved |
TeamViewer Host 10.0.27387.0 | 112 | Thursday, December 12, 2019 | Approved |
TeamViewer Host 10.0.3793.0 | 624 | Thursday, January 17, 2019 | Approved |
TeamViewer Host 9.0.62537.0 | 5 | Tuesday, February 23, 2021 | Approved |
TeamViewer Host 9.0.62438.0 | 8 | Tuesday, November 24, 2020 | Approved |
TeamViewer Host 9.0.62252.0 | 40 | Tuesday, November 10, 2020 | Approved |
TeamViewer Host 9.0.24951 | 1761 | Tuesday, January 14, 2014 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about TeamViewer Host and the TeamViewer Host package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or TeamViewer Host, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.