Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Visual Studio Code (Install)

This is not the latest version of Visual Studio Code (Install) available.

  • 1
  • 2
  • 3

1.52.0 | Updated: 11 Dec 2020

Downloads:

3,895,596

Downloads of v 1.52.0:

20,742

Software Author(s):

  • Microsoft

Visual Studio Code (Install) 1.52.0

This is not the latest version of Visual Studio Code (Install) available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Requires dotnet4.5.2 package which in turn requires a reboot.

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Visual Studio Code (Install), run the following command from the command line or from PowerShell:

>

To upgrade Visual Studio Code (Install), run the following command from the command line or from PowerShell:

>

To uninstall Visual Studio Code (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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

3. Copy Your Script

choco upgrade vscode.install -y --source="'INTERNAL REPO URL'" --version="'1.52.0'" [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.install -y --source="'INTERNAL REPO URL'" --version="'1.52.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install vscode.install
  win_chocolatey:
    name: vscode.install
    version: '1.52.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'vscode.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.52.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller vscode.install
{
    Name     = "vscode.install"
    Version  = "1.52.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'vscode.install':
  ensure   => '1.52.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 11 Dec 2020.

Description

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.
  • /DontAssociateWithFiles - Dont't associate Visual Studio Code with supported files.
  • /DontAddToPath - Don't add Visual Studio Code to the system PATH.

Example: choco install vscode.install --params "/NoDesktopIcon /DontAddToPath"

Notes

screenshot


tools\ChocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$softwareName = 'Microsoft Visual Studio Code'
$version = '1.52.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.install'
  fileType       = 'exe'
  url            = 'https://az764295.vo.msecnd.net/stable/940b5f4bb5fa47866a54529ed759d95d09ee80be/VSCodeSetup-ia32-1.52.0.exe'
  url64bit       = 'https://az764295.vo.msecnd.net/stable/940b5f4bb5fa47866a54529ed759d95d09ee80be/VSCodeSetup-x64-1.52.0.exe'

  softwareName   = "$softwareName"

  checksum       = 'de2ae82b7b5ca949fb07f109def2d06617dbabfec4dd761b5db7551fe88bd4a3'
  checksumType   = 'sha256'
  checksum64     = 'a934dc53feb9083c202fca1f862bec3049edd9f118a593ccded64ae849663f47'
  checksumType64 = 'sha256'

  silentArgs     = '/verysilent /suppressmsgboxes /mergetasks="{0}" /log="{1}\install.log"' -f (Get-MergeTasks), (Get-PackageCacheLocation)
  validExitCodes = @(0, 3010, 1641)
}

Install-ChocolateyPackage @packageArgs
tools\helpers.ps1
function Get-MergeTasks {
    $t  = "!runCode"
    $t += ', ' + '!'*$pp.NoDesktopIcon        + 'desktopicon'
    $t += ', ' + '!'*$pp.NoQuicklaunchIcon    + 'quicklaunchicon'
    $t += ', ' + '!'*$pp.NoContextMenuFiles   + 'addcontextmenufiles'
    $t += ', ' + '!'*$pp.NoContextMenuFolders + 'addcontextmenufolders'
    $t += ', ' + '!'*$pp.DontAssociateWithFiles + 'associatewithfiles'
    $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.

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.

Add to Builder Version Downloads Last Updated Status
Visual Studio Code (Install) 1.76.1 38284 Friday, March 10, 2023 Approved
Visual Studio Code (Install) 1.76.0 47940 Thursday, March 2, 2023 Approved
Visual Studio Code (Install) 1.75.1 68838 Friday, February 10, 2023 Approved
Visual Studio Code (Install) 1.75.0 42294 Friday, February 3, 2023 Approved
Visual Studio Code (Install) 1.74.3 76314 Tuesday, January 10, 2023 Approved
Visual Studio Code (Install) 1.74.2 61310 Wednesday, December 21, 2022 Approved
Visual Studio Code (Install) 1.74.1 35272 Thursday, December 15, 2022 Approved
Visual Studio Code (Install) 1.74.0 38544 Thursday, December 8, 2022 Approved
Visual Studio Code (Install) 1.73.1 82473 Thursday, November 10, 2022 Approved
Visual Studio Code (Install) 1.73.0 41889 Wednesday, November 2, 2022 Approved
Visual Studio Code (Install) 1.72.2 65513 Thursday, October 13, 2022 Approved
Visual Studio Code (Install) 1.72.1 22145 Tuesday, October 11, 2022 Approved
Visual Studio Code (Install) 1.72.0 36166 Thursday, October 6, 2022 Approved
Visual Studio Code (Install) 1.71.2 70073 Thursday, September 15, 2022 Approved
Visual Studio Code (Install) 1.71.1 22215 Tuesday, September 13, 2022 Approved
Visual Studio Code (Install) 1.71.0 46513 Friday, September 2, 2022 Approved
Visual Studio Code (Install) 1.70.2 61066 Wednesday, August 17, 2022 Approved
Visual Studio Code (Install) 1.70.1 37323 Wednesday, August 10, 2022 Approved
Visual Studio Code (Install) 1.70.0 32377 Thursday, August 4, 2022 Approved
Visual Studio Code (Install) 1.69.2 51745 Tuesday, July 19, 2022 Approved
Visual Studio Code (Install) 1.69.1 41775 Tuesday, July 12, 2022 Approved
Visual Studio Code (Install) 1.69.0 29563 Thursday, July 7, 2022 Approved
Visual Studio Code (Install) 1.68.1 64919 Wednesday, June 15, 2022 Approved
Visual Studio Code (Install) 1.68.0 34472 Thursday, June 9, 2022 Approved
Visual Studio Code (Install) 1.67.2 58356 Wednesday, May 18, 2022 Approved
Visual Studio Code (Install) 1.67.1 54933 Tuesday, May 10, 2022 Approved
Visual Studio Code (Install) 1.67.0 29340 Thursday, May 5, 2022 Approved
Visual Studio Code (Install) 1.66.2 69438 Tuesday, April 12, 2022 Approved
Visual Studio Code (Install) 1.66.1 30099 Thursday, April 7, 2022 Approved
Visual Studio Code (Install) 1.66.0 40775 Wednesday, March 30, 2022 Approved
Visual Studio Code (Install) 1.65.2 63849 Friday, March 11, 2022 Approved
Visual Studio Code (Install) 1.65.1 22798 Tuesday, March 8, 2022 Approved
Visual Studio Code (Install) 1.65.0 30458 Friday, March 4, 2022 Approved
Visual Studio Code (Install) 1.64.2 62806 Thursday, February 10, 2022 Approved
Visual Studio Code (Install) 1.64.1 21872 Tuesday, February 8, 2022 Approved
Visual Studio Code (Install) 1.64.0 29976 Friday, February 4, 2022 Approved
Visual Studio Code (Install) 1.63.2 94388 Thursday, December 16, 2021 Approved
Visual Studio Code (Install) 1.63.1 22392 Tuesday, December 14, 2021 Approved
Visual Studio Code (Install) 1.63.0 34096 Thursday, December 9, 2021 Approved
Visual Studio Code (Install) 1.62.3 58051 Thursday, November 18, 2021 Approved
Visual Studio Code (Install) 1.62.2 32474 Friday, November 12, 2021 Approved
Visual Studio Code (Install) 1.62.1 27365 Tuesday, November 9, 2021 Approved
Visual Studio Code (Install) 1.62.0 27936 Thursday, November 4, 2021 Approved
Visual Studio Code (Install) 1.61.2 53197 Wednesday, October 20, 2021 Approved
Visual Studio Code (Install) 1.61.1 28338 Friday, October 15, 2021 Approved
Visual Studio Code (Install) 1.61.0 32597 Friday, October 8, 2021 Approved
Visual Studio Code (Install) 1.60.2 52718 Wednesday, September 22, 2021 Approved
Visual Studio Code (Install) 1.60.1 36345 Tuesday, September 14, 2021 Approved
Visual Studio Code (Install) 1.60.0 40377 Thursday, September 2, 2021 Approved
Visual Studio Code (Install) 1.59.1 43631 Friday, August 20, 2021 Approved
Visual Studio Code (Install) 1.59.0 43203 Thursday, August 5, 2021 Approved
Visual Studio Code (Install) 1.58.2 54770 Thursday, July 15, 2021 Approved
Visual Studio Code (Install) 1.58.1 16641 Tuesday, July 13, 2021 Approved
Visual Studio Code (Install) 1.58.0 24358 Thursday, July 8, 2021 Approved
Visual Studio Code (Install) 1.57.1 51951 Friday, June 18, 2021 Approved
Visual Studio Code (Install) 1.57.0 34422 Thursday, June 10, 2021 Approved
Visual Studio Code (Install) 1.56.2 66964 Thursday, May 13, 2021 Approved
Visual Studio Code (Install) 1.56.1 17772 Tuesday, May 11, 2021 Approved
Visual Studio Code (Install) 1.56.0 26578 Thursday, May 6, 2021 Approved
Visual Studio Code (Install) 1.55.2 55255 Tuesday, April 13, 2021 Approved
Visual Studio Code (Install) 1.55.1 22194 Friday, April 9, 2021 Approved
Visual Studio Code (Install) 1.55.0 27590 Wednesday, March 31, 2021 Approved
Visual Studio Code (Install) 1.54.3 48364 Tuesday, March 16, 2021 Approved
Visual Studio Code (Install) 1.54.2 21354 Friday, March 12, 2021 Approved
Visual Studio Code (Install) 1.54.1 28683 Friday, March 5, 2021 Approved
Visual Studio Code (Install) 1.54.0 5953 Thursday, March 4, 2021 Approved
Visual Studio Code (Install) 1.53.2 51284 Friday, February 12, 2021 Approved
Visual Studio Code (Install) 1.53.1 15594 Tuesday, February 9, 2021 Approved
Visual Studio Code (Install) 1.53.0 22962 Thursday, February 4, 2021 Approved
Visual Studio Code (Install) 1.52.1 80825 Thursday, December 17, 2020 Approved
Visual Studio Code (Install) 1.52.0 20742 Friday, December 11, 2020 Approved
Visual Studio Code (Install) 1.51.1 55469 Thursday, November 12, 2020 Approved
Visual Studio Code (Install) 1.51.0 24029 Friday, November 6, 2020 Approved
Visual Studio Code (Install) 1.50.1 44195 Thursday, October 15, 2020 Approved
Visual Studio Code (Install) 1.50.0 24084 Thursday, October 8, 2020 Approved
Visual Studio Code (Install) 1.49.3 20456 Saturday, October 3, 2020 Approved
Visual Studio Code (Install) 1.49.2 23420 Friday, September 25, 2020 Approved
Visual Studio Code (Install) 1.49.1 22964 Friday, September 18, 2020 Approved
Visual Studio Code (Install) 1.49.0 22084 Friday, September 11, 2020 Approved
Visual Studio Code (Install) 1.48.2 33719 Tuesday, August 25, 2020 Approved
Visual Studio Code (Install) 1.48.1 17641 Thursday, August 20, 2020 Approved
Visual Studio Code (Install) 1.48.0 19634 Thursday, August 13, 2020 Approved
Visual Studio Code (Install) 1.47.3 33087 Tuesday, July 28, 2020 Approved
Visual Studio Code (Install) 1.47.2 24811 Friday, July 17, 2020 Approved
Visual Studio Code (Install) 1.47.1 10242 Tuesday, July 14, 2020 Approved
Visual Studio Code (Install) 1.47.0 15082 Friday, July 10, 2020 Approved
Visual Studio Code (Install) 1.46.1 36054 Thursday, June 18, 2020 Approved
Visual Studio Code (Install) 1.46.0 22731 Thursday, June 11, 2020 Approved
Visual Studio Code (Install) 1.45.1 44723 Friday, May 15, 2020 Approved
Visual Studio Code (Install) 1.45.0 18810 Friday, May 8, 2020 Approved
Visual Studio Code (Install) 1.44.2 35855 Friday, April 17, 2020 Approved
Visual Studio Code (Install) 1.44.1 9858 Tuesday, April 14, 2020 Approved
Visual Studio Code (Install) 1.44.0 18357 Thursday, April 9, 2020 Approved
Visual Studio Code (Install) 1.43.2 28774 Wednesday, March 25, 2020 Approved
Visual Studio Code (Install) 1.43.1 19807 Thursday, March 19, 2020 Approved
Visual Studio Code (Install) 1.43.0 26284 Tuesday, March 10, 2020 Approved
Visual Studio Code (Install) 1.42.1 46579 Friday, February 14, 2020 Approved
Visual Studio Code (Install) 1.42.0 20537 Friday, February 7, 2020 Approved
Visual Studio Code (Install) 1.41.1 59303 Friday, December 20, 2019 Approved
Visual Studio Code (Install) 1.41.0 16419 Friday, December 13, 2019 Approved
Visual Studio Code (Install) 1.40.2 27206 Tuesday, November 26, 2019 Approved
Visual Studio Code (Install) 1.40.1 23190 Thursday, November 14, 2019 Approved
Visual Studio Code (Install) 1.40.0 14891 Friday, November 8, 2019 Approved

Discussion for the Visual Studio Code (Install) Package

Ground Rules:

  • This discussion is only about Visual Studio Code (Install) and the Visual Studio Code (Install) 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 (Install), 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.
comments powered by Disqus