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...

Downloads:
1,394,728
Downloads of v 4.0.25958.0306:
286
Last Update:
06 Apr 2017
Package Maintainer(s):
Software Author(s):
- Zoom Video Communications
- Inc.
Tags:
zoom admin webinar webcam meeting- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Zoom Client for Meetings
This is not the latest version of Zoom Client for Meetings available.
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,394,728
Downloads of v 4.0.25958.0306:
286
Maintainer(s):
Software Author(s):
- Zoom Video Communications
- Inc.
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.
Zoom Client for Meetings 4.0.25958.0306
This is not the latest version of Zoom Client for Meetings available.
All Checks are Passing
2 Passing Test
To install Zoom Client for Meetings, run the following command from the command line or from PowerShell:
To upgrade Zoom Client for Meetings, run the following command from the command line or from PowerShell:
To uninstall Zoom Client for Meetings, 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://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 zoom --internalize --version=4.0.25958.0306 --source=https://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://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade zoom -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 zoom -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 zoom installed
win_chocolatey:
name: zoom
state: present
version: 4.0.25958.0306
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'zoom' do
action :install
version '4.0.25958.0306'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: zoom,
Version: 4.0.25958.0306,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller zoom
{
Name = 'zoom'
Ensure = 'Present'
Version = '4.0.25958.0306'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'zoom':
provider => 'chocolatey',
ensure => '4.0.25958.0306',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install zoom version="4.0.25958.0306" 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 by moderator flcdrg on 16 Apr 2017.
Zoom unifies cloud video conferencing, simple online meetings, group messaging, and a software-defined conference room solution into one easy-to-use platform. Our solution offers the best video, audio, and wireless screen-sharing experience across Windows, Mac, iOS, Android, Blackberry, Linux, Zoom Rooms, and H.323/SIP room systems. Founded in 2011, Zoom's mission is to develop a people-centric cloud service that transforms the real-time collaboration experience and improves the quality and effectiveness of communications forever.
$checksum = '0a94379ffa57fbd95fdd0f9a317ee2333084346da78567f6fbaf1283e18a920d'
$url = 'https://zoom.us/client/latest/ZoomInstaller.exe'
$packageArgs = @{
packageName = 'zoom'
unzipLocation = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
fileType = 'exe'
url = $url
silentArgs = '/Q'
validExitCodes= @(0)
softwareName = 'zoom*'
checksum = $checksum
checksumType = 'sha256'
}
Install-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
- zoom.4.0.25958.0306.nupkg (24fb3894bd9f) - ## / 59
- ZoomInstaller.exe (0a94379ffa57) - ## / 62
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 |
---|---|---|---|
Zoom Client for Meetings 5.4.59931.0110 | 85036 | Monday, January 11, 2021 | Approved |
Zoom Client for Meetings 5.4.59784.1220 | 98716 | Monday, December 21, 2020 | Approved |
Zoom Client for Meetings 5.4.59296.1207 | 75976 | Tuesday, December 8, 2020 | Approved |
Zoom Client for Meetings 5.4.58891.1115 | 79315 | Monday, November 16, 2020 | Approved |
Zoom Client for Meetings 5.4.58740.1105 | 58303 | Monday, November 9, 2020 | Approved |
Zoom Client for Meetings 5.4.58698.1027 | 63190 | Wednesday, October 28, 2020 | Approved |
Zoom Client for Meetings 5.4.58636.1026 | 22346 | Monday, October 26, 2020 | Approved |
Zoom Client for Meetings 5.3.53291.1011 | 63929 | Tuesday, October 13, 2020 | Approved |
Zoom Client for Meetings 5.3.52879.0927 | 84956 | Monday, September 28, 2020 | Approved |
Zoom Client for Meetings 5.3.52670.0921 | 40689 | Monday, September 21, 2020 | Approved |
Zoom Client for Meetings 5.2.45120.0906 | 60294 | Tuesday, September 8, 2020 | Approved |
Zoom Client for Meetings 5.2.45108.0831 | 26531 | Tuesday, September 1, 2020 | Approved |
Zoom Client for Meetings 5.2.44052.0816 | 75689 | Monday, August 17, 2020 | Approved |
Zoom Client for Meetings 5.2.42619.0804 | 40258 | Tuesday, August 4, 2020 | Approved |
Zoom Client for Meetings 5.1.28656.0709 | 52001 | Friday, July 10, 2020 | Approved |
Zoom Client for Meetings 5.1.28642.0705 | 19238 | Monday, July 6, 2020 | Approved |
Zoom Client for Meetings 5.1.28546.0628 | 24888 | Monday, June 29, 2020 | Approved |
Zoom Client for Meetings 5.1.27830.0612 | 37479 | Monday, June 15, 2020 | Approved |
Zoom Client for Meetings 5.0.26213.0602 | 39802 | Wednesday, June 3, 2020 | Approved |
Zoom Client for Meetings 5.0.25694.0524 | 21322 | Monday, May 25, 2020 | Approved |
Zoom Client for Meetings 5.0.24951.0515 | 14018 | Monday, May 18, 2020 | Approved |
Zoom Client for Meetings 5.0.24046.0510 | 16643 | Monday, May 11, 2020 | Approved |
Zoom Client for Meetings 5.0.23502.0430 | 13680 | Thursday, April 30, 2020 | Approved |
Zoom Client for Meetings 5.0.23168.0427 | 13086 | Tuesday, April 28, 2020 | Approved |
[Deprecated] Zoom Client for Meetings 4.8.5337.0 | 35678 | Friday, April 3, 2020 | Approved |
Zoom Client for Meetings 4.8.5336.0933 | 90 | Thursday, March 12, 2020 | Approved |
Zoom Client for Meetings 4.8.5336.0932 | 60003 | Wednesday, December 18, 2019 | Approved |
Zoom Client for Meetings 4.8.5336.0931 | 21085 | Wednesday, October 30, 2019 | Approved |
Zoom Client for Meetings 4.8.5336.0929 | 17313 | Monday, October 7, 2019 | Approved |
Zoom Client for Meetings 4.8.5336.0928 | 19666 | Sunday, September 29, 2019 | Approved |
[Deprecated] Zoom Client for Meetings 4.8.7.0 | 50 | Friday, April 3, 2020 | Approved |
Zoom Client for Meetings 4.8.6.0 | 55 | Thursday, April 2, 2020 | Approved |
Zoom Client for Meetings 4.5.3372.0908 | 8724 | Tuesday, September 10, 2019 | Approved |
Zoom Client for Meetings 4.5.3284.0828 | 5518 | Thursday, August 29, 2019 | Approved |
Zoom Client for Meetings 4.5.3261.0825 | 2698 | Monday, August 26, 2019 | Approved |
Zoom Client for Meetings 4.4.55389.0716 | 7855 | Wednesday, July 17, 2019 | Approved |
Zoom Client for Meetings 4.4.55311.0714 | 2412 | Monday, July 15, 2019 | Approved |
Zoom Client for Meetings 4.4.53901.0616 | 5754 | Monday, June 17, 2019 | Approved |
Zoom Client for Meetings 4.4.53595.0520 | 5818 | Tuesday, May 21, 2019 | Approved |
Zoom Client for Meetings 4.4.53582.0519 | 1038 | Monday, May 20, 2019 | Approved |
Zoom Client for Meetings 4.4.52578.0415 | 4844 | Tuesday, April 16, 2019 | Approved |
Zoom Client for Meetings 4.4.52570.0415 | 779 | Monday, April 15, 2019 | Approved |
Zoom Client for Meetings 4.4.52532.0413 | 1041 | Sunday, April 14, 2019 | Approved |
Zoom Client for Meetings 4.3.46560.0311 | 3170 | Monday, March 11, 2019 | Approved |
Zoom Client for Meetings 4.3.46499.0224 | 1483 | Friday, March 1, 2019 | Approved |
Zoom Client for Meetings 4.3.46333.0128 | 5604 | Monday, January 28, 2019 | Approved |
Zoom Client for Meetings 4.3.46260.0122 | 819 | Friday, January 25, 2019 | Approved |
Zoom Client for Meetings 4.3.46185.0120 | 2719 | Monday, January 21, 2019 | Approved |
Zoom Client for Meetings 4.1.35374.1217 | 2140 | Monday, December 17, 2018 | Approved |
Zoom Client for Meetings 4.1.34814.1119 | 21047 | Monday, November 19, 2018 | Approved |
Zoom Client for Meetings 4.1.34583.1107 | 872 | Thursday, November 8, 2018 | Approved |
Zoom Client for Meetings 4.1.34460.1105 | 546 | Monday, November 5, 2018 | Approved |
Zoom Client for Meetings 4.1.33259.0925 | 1592 | Tuesday, September 25, 2018 | Approved |
Zoom Client for Meetings 4.1.30528.0821 | 1256 | Tuesday, August 21, 2018 | Approved |
Zoom Client for Meetings 4.1.30445.0820 | 269 | Monday, August 20, 2018 | Approved |
Zoom Client for Meetings 4.1.28245.0718 | 1515 | Thursday, July 19, 2018 | Approved |
Zoom Client for Meetings 4.1.28245.0717 | 318 | Tuesday, July 17, 2018 | Approved |
Zoom Client for Meetings 4.1.28165.0716 | 295 | Monday, July 16, 2018 | Approved |
Zoom Client for Meetings 4.1.27702.0702 | 877 | Monday, July 2, 2018 | Approved |
Zoom Client for Meetings 4.1.27695.0702 | 176 | Monday, July 2, 2018 | Approved |
Zoom Client for Meetings 4.1.27507.0627 | 370 | Wednesday, June 27, 2018 | Approved |
Zoom Client for Meetings 4.1.25010.0522 | 1152 | Tuesday, May 22, 2018 | Approved |
Zoom Client for Meetings 4.1.24919.0521 | 276 | Monday, May 21, 2018 | Approved |
Zoom Client for Meetings 4.1.24407.0507 | 1019 | Monday, May 7, 2018 | Approved |
Zoom Client for Meetings 4.1.23501.0416 | 861 | Monday, April 16, 2018 | Approved |
Zoom Client for Meetings 4.1.23108.0402 | 697 | Monday, April 2, 2018 | Approved |
Zoom Client for Meetings 4.1.20185.0205 | 1180 | Monday, February 5, 2018 | Approved |
Zoom Client for Meetings 4.1.19663.0122 | 436 | Monday, January 29, 2018 | Approved |
Zoom Client for Meetings 4.1.18847.0104 | 629 | Friday, January 5, 2018 | Approved |
Zoom Client for Meetings 4.1.17379.1218 | 406 | Wednesday, December 20, 2017 | Approved |
Zoom Client for Meetings 4.1.16699.1208 | 460 | Monday, December 11, 2017 | Approved |
Zoom Client for Meetings 4.1.11049.1024 | 913 | Tuesday, October 24, 2017 | Approved |
Zoom Client for Meetings 4.1.10062.1016 | 381 | Monday, October 16, 2017 | Approved |
Zoom Client for Meetings 4.1.9355.0929 | 509 | Friday, September 29, 2017 | Approved |
Zoom Client for Meetings 4.1.8826.0925 | 409 | Monday, September 25, 2017 | Approved |
Zoom Client for Meetings 4.0.38982.0714 | 847 | Monday, July 17, 2017 | Approved |
Zoom Client for Meetings 4.0.36525.0619 | 450 | Monday, June 19, 2017 | Approved |
Zoom Client for Meetings 4.0.35295.0605 | 864 | Monday, June 5, 2017 | Approved |
Zoom Client for Meetings 4.0.29656.0413 | 668 | Friday, April 14, 2017 | Approved |
Zoom Client for Meetings 4.0.29406.0411 | 278 | Tuesday, April 11, 2017 | Approved |
Zoom Client for Meetings 4.0.29183.0407 | 257 | Monday, April 10, 2017 | Approved |
Zoom Client for Meetings 4.0.25958.0306 | 286 | Thursday, April 6, 2017 | Approved |
Zoom 3.5.556609.0707 | 902 | Monday, July 11, 2016 | Approved |
Copyright ©2017 Zoom Video Communications, Inc. All rights reserved.
This package has no dependencies.
Ground Rules:
- This discussion is only about Zoom Client for Meetings and the Zoom Client for Meetings 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 Zoom Client for Meetings, 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.