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,903,527
Downloads of v 87.0.664.75:
71,163
Last Update:
08 Jan 2021
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
edge microsoft browser stable chromium
Microsoft Edge
Downloads:
1,903,527
Downloads of v 87.0.664.75:
71,163
Maintainer(s):
Software Author(s):
- Microsoft
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.
All Checks are Passing
2 Passing Test
To install Microsoft Edge, run the following command from the command line or from PowerShell:
To upgrade Microsoft Edge, run the following command from the command line or from PowerShell:
To uninstall Microsoft Edge, 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 microsoft-edge --internalize --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 microsoft-edge -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 microsoft-edge -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 microsoft-edge installed
win_chocolatey:
name: microsoft-edge
state: present
version: 87.0.664.75
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 'microsoft-edge' do
action :install
version '87.0.664.75'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: microsoft-edge,
Version: 87.0.664.75,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller microsoft-edge
{
Name = 'microsoft-edge'
Ensure = 'Present'
Version = '87.0.664.75'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'microsoft-edge':
provider => 'chocolatey',
ensure => '87.0.664.75',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install microsoft-edge version="87.0.664.75" 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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 08 Jan 2021.
This package is the stable version of the Microsoft Edge browser, based on the Chromium open source browser. Portions of this browser are based on Third Party Open source software. The entire list of Microsoft utilized open source is available at https://thirdpartysource.microsoft.com/ while the portions and licenses specific to Edge are available at edge://credits/ once installed.
$ErrorActionPreference = 'Stop';
$url32 = 'https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/a00a7483-0ba9-4663-9573-cd887fa55edf/MicrosoftEdgeEnterpriseX86.msi'
$url64 = 'https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/6c81271b-682e-4299-a0e0-e00f65e76619/MicrosoftEdgeEnterpriseX64.msi'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'MSI'
url = $url32
url64bit = $url64
softwareName = 'Microsoft Edge'
checksum = 'D13C094A702A1D9332C889F946A62EB754B3778439F117AB16D3EA7E699B130B'
checksumType = 'sha256'
checksum64 = '6A4881CC9FF0E316FAE2CBE4B4C3446A8A3955A3072BB0B5B21C58BE71D4AD22'
checksumType64 = 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes = @(0, 3010, 1641)
}
Install-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
- microsoft-edge.87.0.664.75.nupkg (d12177efe629) - ## / 63
- MicrosoftEdgeEnterpriseX64.msi (6a4881cc9ff0) - ## / 60
- MicrosoftEdgeEnterpriseX86.msi (d13c094a702a) - ## / 61
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 |
---|---|---|---|
Microsoft Edge 87.0.664.75 | 71163 | Friday, January 8, 2021 | Approved |
Microsoft Edge 87.0.664.66 | 93133 | Friday, December 18, 2020 | Approved |
Microsoft Edge 87.0.664.60 | 59795 | Friday, December 11, 2020 | Approved |
Microsoft Edge 87.0.664.57 | 54421 | Tuesday, December 8, 2020 | Approved |
Microsoft Edge 87.0.664.55 | 43896 | Thursday, December 3, 2020 | Approved |
Microsoft Edge 87.0.664.52 | 43056 | Tuesday, December 1, 2020 | Approved |
Microsoft Edge 87.0.664.47 | 57935 | Tuesday, November 24, 2020 | Approved |
Microsoft Edge 87.0.664.41 | 34525 | Friday, November 20, 2020 | Approved |
Microsoft Edge 86.0.622.69 | 48945 | Saturday, November 14, 2020 | Approved |
Microsoft Edge 86.0.622.68 | 56494 | Thursday, November 12, 2020 | Approved |
Microsoft Edge 86.0.622.63 | 297 | Thursday, November 5, 2020 | Approved |
Microsoft Edge 86.0.622.61 | 84410 | Tuesday, November 3, 2020 | Approved |
Microsoft Edge 86.0.622.58 | 38115 | Friday, October 30, 2020 | Approved |
Microsoft Edge 86.0.622.56 | 37310 | Tuesday, October 27, 2020 | Approved |
Microsoft Edge 86.0.622.51 | 41319 | Thursday, October 22, 2020 | Approved |
Microsoft Edge 86.0.622.48 | 29258 | Tuesday, October 20, 2020 | Approved |
Microsoft Edge 86.0.622.43 | 27860 | Thursday, October 15, 2020 | Approved |
Microsoft Edge 86.0.622.38 | 55680 | Thursday, October 8, 2020 | Approved |
Microsoft Edge 85.0.564.70 | 31940 | Wednesday, October 7, 2020 | Approved |
Microsoft Edge 85.0.564.68 | 38454 | Friday, October 2, 2020 | Approved |
Microsoft Edge 85.0.564.63 | 54297 | Thursday, September 24, 2020 | Approved |
Microsoft Edge 85.0.564.51 | 81017 | Thursday, September 10, 2020 | Approved |
Microsoft Edge 85.0.564.44 | 53364 | Tuesday, September 1, 2020 | Approved |
Microsoft Edge 85.0.564.41 | 30889 | Friday, August 28, 2020 | Approved |
Microsoft Edge 84.0.522.63 | 46923 | Thursday, August 20, 2020 | Approved |
Microsoft Edge 84.0.522.61 | 27876 | Monday, August 17, 2020 | Approved |
Microsoft Edge 84.0.522.59 | 33420 | Wednesday, August 12, 2020 | Approved |
Microsoft Edge 84.0.522.58 | 15267 | Tuesday, August 11, 2020 | Approved |
Microsoft Edge 84.0.522.50 | 76650 | Friday, July 31, 2020 | Approved |
Microsoft Edge 84.0.522.49 | 19534 | Wednesday, July 29, 2020 | Approved |
Microsoft Edge 84.0.522.48 | 11591 | Tuesday, July 28, 2020 | Approved |
Microsoft Edge 84.0.522.44 | 23251 | Friday, July 24, 2020 | Approved |
Microsoft Edge 84.0.522.40 | 35998 | Thursday, July 16, 2020 | Approved |
Microsoft Edge 83.0.478.61 | 39991 | Tuesday, July 7, 2020 | Approved |
Microsoft Edge 83.0.478.58 | 33966 | Tuesday, June 30, 2020 | Approved |
Microsoft Edge 83.0.478.56 | 29936 | Wednesday, June 24, 2020 | Approved |
Microsoft Edge 83.0.478.54 | 33013 | Wednesday, June 17, 2020 | Approved |
Microsoft Edge 83.0.478.50 | 17783 | Monday, June 15, 2020 | Approved |
Microsoft Edge 83.0.478.45 | 30329 | Thursday, June 4, 2020 | Approved |
Microsoft Edge 83.0.478.44 | 19895 | Monday, June 1, 2020 | Approved |
Microsoft Edge 83.0.478.37 | 26077 | Thursday, May 21, 2020 | Approved |
Microsoft Edge 81.0.416.77 | 10983 | Monday, May 18, 2020 | Approved |
Microsoft Edge 81.0.416.72 | 30507 | Thursday, May 7, 2020 | Approved |
Microsoft Edge 81.0.416.64 | 28920 | Thursday, April 23, 2020 | Approved |
Microsoft Edge 81.0.416.62 | 6597 | Wednesday, April 22, 2020 | Approved |
Microsoft Edge 81.0.416.58 | 12952 | Friday, April 17, 2020 | Approved |
Microsoft Edge 81.0.416.53 | 17756 | Monday, April 13, 2020 | Approved |
Microsoft Edge 80.0.361.111 | 12164 | Tuesday, April 7, 2020 | Approved |
Microsoft Edge 80.0.361.109 | 13072 | Wednesday, April 1, 2020 | Approved |
Microsoft Edge 80.0.361.103 | 2219 | Monday, March 30, 2020 | Approved |
Microsoft Edge 80.0.361.69 | 19777 | Thursday, March 19, 2020 | Approved |
Microsoft Edge 80.0.361.66 | 29289 | Thursday, March 5, 2020 | Approved |
Microsoft Edge 80.0.361.50 | 2730 | Tuesday, February 11, 2020 | Approved |
Microsoft Edge 80.0.361.48 | 43 | Friday, February 7, 2020 | Approved |
Microsoft Edge 79.0.309.71 | 27069 | Thursday, January 23, 2020 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Microsoft Edge and the Microsoft Edge 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 Microsoft Edge, 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.