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,723,946
Downloads of v 1.33.0:
15,055
Last Update:
05 Apr 2019
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
microsoft visualstudiocode vscode development editor ide javascript typescript admin foss cross-platform- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Visual Studio Code
This is not the latest version of Visual Studio Code available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,723,946
Downloads of v 1.33.0:
15,055
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.
Visual Studio Code 1.33.0
This is not the latest version of Visual Studio Code available.
All Checks are Passing
2 Passing Test
To install Visual Studio Code, run the following command from the command line or from PowerShell:
To upgrade Visual Studio Code, run the following command from the command line or from PowerShell:
To uninstall Visual Studio Code, 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 vscode --internalize --version=1.33.0 --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 vscode -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 vscode -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 vscode installed
win_chocolatey:
name: vscode
state: present
version: 1.33.0
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 'vscode' do
action :install
version '1.33.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: vscode,
Version: 1.33.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller vscode
{
Name = 'vscode'
Ensure = 'Present'
Version = '1.33.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'vscode':
provider => 'chocolatey',
ensure => '1.33.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install vscode version="1.33.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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 05 Apr 2019.
Build and debug modern web and cloud applications. Code is free and available on your favorite platform - Linux, Mac OSX, and Windows.
Features
- Meet IntelliSense: Go beyond syntax highlighting and autocomplete with IntelliSense, which provides smart completions based on variable types, function definitions, and imported modules.
- Print statement debugging is a thing of the past: Debug code right from the editor. Launch or attach to your running apps and debug with break points, call stacks, and an interactive console.
- Git commands built-in: Working with Git has never been easier. Review diffs, stage files, and make commits right from the editor. Push and pull from any hosted Git service.
- Extensible and customizable: Want even more features? Install extensions to add new languages, themes, debuggers, and to connect to additional services. Extensions run in separate processes, ensuring they won't slow down your editor.
Package parameters
/NoDesktopIcon
- Don't add a desktop icon./NoQuicklaunchIcon
- Don't add an icon to the QuickLaunch area./NoContextMenuFiles
- Don't add an Open with Code entry to the context menu for files./NoContextMenuFolders
- Dont't add an Open with Code entry to the context menu for folders./DontAddToPath
- Don't add Visual Studio Code to the system PATH.
Example: choco install vscode --params "/NoDesktopIcon /DontAddToPath"
Notes
- The package uses default install options except that it adds context menu entries and Visual Studio Code isn't started after installation.
- For disabling the auto-update functionality see the Visual Studio Code Auto Update Deactivation package.
$ErrorActionPreference = 'Stop'
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1
$softwareName = 'Microsoft Visual Studio Code'
$version = '1.33.0'
if ($version -eq (Get-UninstallRegistryKey "$softwareName").DisplayVersion) {
Write-Host "VS Code $version is already installed."
return
}
$pp = Get-PackageParameters
Close-VSCode
$packageArgs = @{
packageName = 'vscode'
fileType = 'exe'
url = 'https://az764295.vo.msecnd.net/stable/0dd516dd412d42323fc3464531b1c715d51c4c1a/VSCodeSetup-ia32-1.33.0.exe'
url64bit = 'https://az764295.vo.msecnd.net/stable/0dd516dd412d42323fc3464531b1c715d51c4c1a/VSCodeSetup-x64-1.33.0.exe'
softwareName = "$softwareName"
checksum = '83fbdd08fa9329220c57541946efa56f8921a38b4c9af9005feb6ff8521e5ef3'
checksumType = 'sha256'
checksum64 = 'fdb983538c35344952dad153cf049168cd73ad498bfe7ece92a00b29312abbd0'
checksumType64 = 'sha256'
silentArgs = '/verysilent /suppressmsgboxes /mergetasks="{0}" /log="{1}\install.log"' -f (Get-MergeTasks), (Get-PackageCacheLocation)
validExitCodes = @(0, 3010, 1641)
}
Install-ChocolateyPackage @packageArgs
function Get-MergeTasks {
$t = "!runCode"
$t += ', ' + '!'*$pp.NoDesktopIcon + 'desktopicon'
$t += ', ' + '!'*$pp.NoQuicklaunchIcon + 'quicklaunchicon'
$t += ', ' + '!'*$pp.NoContextMenuFiles + 'addcontextmenufiles'
$t += ', ' + '!'*$pp.NoContextMenuFolders + 'addcontextmenufolders'
$t += ', ' + '!'*$pp.DontAddToPath + 'addtopath'
Write-Host "Merge Tasks: $t"
$t
}
function Close-VSCode {
Get-Process code -ea 0 | ForEach-Object { $_.CloseMainWindow() | Out-Null }
Start-Sleep 1
Get-Process code -ea 0 | Stop-Process #in case gracefull shutdown did not succeed, try hard kill
}
Log in or click on link to see number of positives.
- vscode.1.33.0.nupkg (30272aedb9c5) - ## / 61
- VSCodeSetup-x64-1.33.0.exe (fdb983538c35) - ## / 68
- VSCodeSetup-ia32-1.33.0.exe (83fbdd08fa93) - ## / 67
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 |
---|---|---|---|
Visual Studio Code 1.52.1 | 66283 | Thursday, December 17, 2020 | Approved |
Visual Studio Code 1.52.0 | 20705 | Friday, December 11, 2020 | Approved |
Visual Studio Code 1.51.1 | 60215 | Thursday, November 12, 2020 | Approved |
Visual Studio Code 1.51.0 | 24639 | Friday, November 6, 2020 | Approved |
Visual Studio Code 1.50.1 | 48630 | Thursday, October 15, 2020 | Approved |
Visual Studio Code 1.50.0 | 25867 | Thursday, October 8, 2020 | Approved |
Visual Studio Code 1.49.3 | 21247 | Saturday, October 3, 2020 | Approved |
Visual Studio Code 1.49.2 | 25303 | Friday, September 25, 2020 | Approved |
Visual Studio Code 1.49.1 | 25221 | Friday, September 18, 2020 | Approved |
Visual Studio Code 1.49.0 | 24346 | Friday, September 11, 2020 | Approved |
Visual Studio Code 1.48.2 | 41212 | Tuesday, August 25, 2020 | Approved |
Visual Studio Code 1.48.1 | 19586 | Thursday, August 20, 2020 | Approved |
Visual Studio Code 1.48.0 | 21241 | Thursday, August 13, 2020 | Approved |
Visual Studio Code 1.47.3 | 38006 | Tuesday, July 28, 2020 | Approved |
Visual Studio Code 1.47.2 | 27457 | Friday, July 17, 2020 | Approved |
Visual Studio Code 1.47.1 | 10329 | Tuesday, July 14, 2020 | Approved |
Visual Studio Code 1.47.0 | 15662 | Friday, July 10, 2020 | Approved |
Visual Studio Code 1.46.1 | 43326 | Thursday, June 18, 2020 | Approved |
Visual Studio Code 1.46.0 | 25091 | Thursday, June 11, 2020 | Approved |
Visual Studio Code 1.45.1 | 54556 | Friday, May 15, 2020 | Approved |
Visual Studio Code 1.45.0 | 20722 | Friday, May 8, 2020 | Approved |
Visual Studio Code 1.44.2 | 40423 | Friday, April 17, 2020 | Approved |
Visual Studio Code 1.44.1 | 9541 | Tuesday, April 14, 2020 | Approved |
Visual Studio Code 1.44.0 | 19279 | Thursday, April 9, 2020 | Approved |
Visual Studio Code 1.43.2 | 31538 | Wednesday, March 25, 2020 | Approved |
Visual Studio Code 1.43.1 | 21176 | Thursday, March 19, 2020 | Approved |
Visual Studio Code 1.43.0 | 27676 | Tuesday, March 10, 2020 | Approved |
Visual Studio Code 1.42.1 | 51090 | Friday, February 14, 2020 | Approved |
Visual Studio Code 1.42.0 | 21673 | Friday, February 7, 2020 | Approved |
Visual Studio Code 1.41.1 | 65717 | Friday, December 20, 2019 | Approved |
Visual Studio Code 1.41.0 | 16375 | Friday, December 13, 2019 | Approved |
Visual Studio Code 1.40.2 | 28072 | Tuesday, November 26, 2019 | Approved |
Visual Studio Code 1.40.1 | 23651 | Thursday, November 14, 2019 | Approved |
Visual Studio Code 1.40.0 | 14960 | Friday, November 8, 2019 | Approved |
Visual Studio Code 1.39.2 | 37302 | Wednesday, October 16, 2019 | Approved |
Visual Studio Code 1.39.1 | 13438 | Friday, October 11, 2019 | Approved |
Visual Studio Code 1.39.0 | 4550 | Thursday, October 10, 2019 | Approved |
Visual Studio Code 1.38.1 | 40768 | Thursday, September 12, 2019 | Approved |
Visual Studio Code 1.38.0 | 16237 | Wednesday, September 4, 2019 | Approved |
Visual Studio Code 1.37.1 | 32995 | Thursday, August 15, 2019 | Approved |
Visual Studio Code 1.37.0 | 15291 | Thursday, August 8, 2019 | Approved |
Visual Studio Code 1.36.1 | 40055 | Tuesday, July 9, 2019 | Approved |
Visual Studio Code 1.36.0 | 13118 | Wednesday, July 3, 2019 | Approved |
Visual Studio Code 1.35.1 | 30029 | Thursday, June 13, 2019 | Approved |
Visual Studio Code 1.35.0 | 16480 | Wednesday, June 5, 2019 | Approved |
Visual Studio Code 1.34.0 | 27357 | Saturday, May 18, 2019 | Approved |
Visual Studio Code 1.33.1 | 42894 | Thursday, April 11, 2019 | Approved |
Visual Studio Code 1.33.0 | 15055 | Friday, April 5, 2019 | Approved |
Visual Studio Code 1.32.3 | 28986 | Friday, March 15, 2019 | Approved |
Visual Studio Code 1.32.2 | 3807 | Thursday, March 14, 2019 | Approved |
Visual Studio Code 1.32.1 | 10525 | Friday, March 8, 2019 | Approved |
Visual Studio Code 1.31.1 | 25940 | Wednesday, February 13, 2019 | Approved |
Visual Studio Code 1.31.0 | 10466 | Thursday, February 7, 2019 | Approved |
Visual Studio Code 1.30.2 | 30370 | Tuesday, January 8, 2019 | Approved |
Visual Studio Code 1.30.1 | 18131 | Wednesday, December 19, 2018 | Approved |
Visual Studio Code 1.30.0 | 8892 | Thursday, December 13, 2018 | Approved |
Visual Studio Code 1.29.1 | 24293 | Friday, November 16, 2018 | Approved |
Visual Studio Code 1.29.0 | 6364 | Tuesday, November 13, 2018 | Approved |
Visual Studio Code 1.28.2 | 23355 | Thursday, October 18, 2018 | Approved |
Visual Studio Code 1.28.1 | 7988 | Friday, October 12, 2018 | Approved |
Visual Studio Code 1.28.0 | 5869 | Monday, October 8, 2018 | Approved |
Visual Studio Code 1.27.2 | 28254 | Thursday, September 13, 2018 | Approved |
Visual Studio Code 1.27.1 | 9630 | Thursday, September 6, 2018 | Approved |
Visual Studio Code 1.27.0 | 2020 | Thursday, September 6, 2018 | Approved |
Visual Studio Code 1.26.1 | 20244 | Friday, August 17, 2018 | Approved |
Visual Studio Code 1.26.0 | 5987 | Tuesday, August 14, 2018 | Approved |
Visual Studio Code 1.25.1 | 28016 | Thursday, July 12, 2018 | Approved |
Visual Studio Code 1.25.0 | 8377 | Thursday, July 5, 2018 | Approved |
Visual Studio Code 1.24.1 | 16362 | Thursday, June 14, 2018 | Approved |
Visual Studio Code 1.24.0 | 7458 | Wednesday, June 6, 2018 | Approved |
Visual Studio Code 1.23.1.20180513 | 16210 | Sunday, May 13, 2018 | Approved |
-
- chocolatey-core.extension (≥ 1.3.3)
- dotnet4.5.2 (≥ 4.5.2.20140902)
Ground Rules:
- This discussion is only about Visual Studio Code and the Visual Studio Code 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 Visual Studio Code, 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.