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.74.1 | Updated: 15 Dec 2022

Downloads:

3,905,817

Downloads of v 1.74.1:

35,273

Software Author(s):

  • Microsoft

Visual Studio Code (Install) 1.74.1

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.74.1'" [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.74.1'" 
$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.74.1'
    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.74.1'
end

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


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

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


package { 'vscode.install':
  ensure   => '1.74.1',
  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 15 Dec 2022.

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.74.1'
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/1ad8d514439d5077d2b0b7ee64d2ce82a9308e5a/VSCodeSetup-ia32-1.74.1.exe'
  url64bit       = 'https://az764295.vo.msecnd.net/stable/1ad8d514439d5077d2b0b7ee64d2ce82a9308e5a/VSCodeSetup-x64-1.74.1.exe'

  softwareName   = "$softwareName"

  checksum       = 'b1be7b5c5317b3ddf5807b4ffd53b14d113f053c98c09e154d8a0a0eebec4634'
  checksumType   = 'sha256'
  checksum64     = 'e824f068797de93cc0f28ec0a881142aafc0d0f05f2157f617f2afa7959f1bd4'
  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 38285 Friday, March 10, 2023 Approved
Visual Studio Code (Install) 1.76.0 47952 Thursday, March 2, 2023 Approved
Visual Studio Code (Install) 1.75.1 68854 Friday, February 10, 2023 Approved
Visual Studio Code (Install) 1.75.0 42295 Friday, February 3, 2023 Approved
Visual Studio Code (Install) 1.74.3 76318 Tuesday, January 10, 2023 Approved
Visual Studio Code (Install) 1.74.2 61316 Wednesday, December 21, 2022 Approved
Visual Studio Code (Install) 1.74.1 35273 Thursday, December 15, 2022 Approved
Visual Studio Code (Install) 1.74.0 38545 Thursday, December 8, 2022 Approved
Visual Studio Code (Install) 1.73.1 82484 Thursday, November 10, 2022 Approved
Visual Studio Code (Install) 1.73.0 41890 Wednesday, November 2, 2022 Approved
Visual Studio Code (Install) 1.72.2 65518 Thursday, October 13, 2022 Approved
Visual Studio Code (Install) 1.72.1 22148 Tuesday, October 11, 2022 Approved
Visual Studio Code (Install) 1.72.0 36169 Thursday, October 6, 2022 Approved
Visual Studio Code (Install) 1.71.2 70074 Thursday, September 15, 2022 Approved
Visual Studio Code (Install) 1.71.1 22216 Tuesday, September 13, 2022 Approved
Visual Studio Code (Install) 1.71.0 46522 Friday, September 2, 2022 Approved
Visual Studio Code (Install) 1.70.2 61070 Wednesday, August 17, 2022 Approved
Visual Studio Code (Install) 1.70.1 37324 Wednesday, August 10, 2022 Approved
Visual Studio Code (Install) 1.70.0 32379 Thursday, August 4, 2022 Approved
Visual Studio Code (Install) 1.69.2 51746 Tuesday, July 19, 2022 Approved
Visual Studio Code (Install) 1.69.1 41776 Tuesday, July 12, 2022 Approved
Visual Studio Code (Install) 1.69.0 29565 Thursday, July 7, 2022 Approved
Visual Studio Code (Install) 1.68.1 64920 Wednesday, June 15, 2022 Approved
Visual Studio Code (Install) 1.68.0 34474 Thursday, June 9, 2022 Approved
Visual Studio Code (Install) 1.67.2 58358 Wednesday, May 18, 2022 Approved
Visual Studio Code (Install) 1.67.1 54934 Tuesday, May 10, 2022 Approved
Visual Studio Code (Install) 1.67.0 29341 Thursday, May 5, 2022 Approved
Visual Studio Code (Install) 1.66.2 69440 Tuesday, April 12, 2022 Approved
Visual Studio Code (Install) 1.66.1 30100 Thursday, April 7, 2022 Approved
Visual Studio Code (Install) 1.66.0 40776 Wednesday, March 30, 2022 Approved
Visual Studio Code (Install) 1.65.2 63850 Friday, March 11, 2022 Approved
Visual Studio Code (Install) 1.65.1 22799 Tuesday, March 8, 2022 Approved
Visual Studio Code (Install) 1.65.0 30459 Friday, March 4, 2022 Approved
Visual Studio Code (Install) 1.64.2 62807 Thursday, February 10, 2022 Approved
Visual Studio Code (Install) 1.64.1 21873 Tuesday, February 8, 2022 Approved
Visual Studio Code (Install) 1.64.0 29977 Friday, February 4, 2022 Approved
Visual Studio Code (Install) 1.63.2 94389 Thursday, December 16, 2021 Approved
Visual Studio Code (Install) 1.63.1 22393 Tuesday, December 14, 2021 Approved
Visual Studio Code (Install) 1.63.0 34102 Thursday, December 9, 2021 Approved
Visual Studio Code (Install) 1.62.3 58057 Thursday, November 18, 2021 Approved
Visual Studio Code (Install) 1.62.2 32476 Friday, November 12, 2021 Approved
Visual Studio Code (Install) 1.62.1 27366 Tuesday, November 9, 2021 Approved
Visual Studio Code (Install) 1.62.0 27937 Thursday, November 4, 2021 Approved
Visual Studio Code (Install) 1.61.2 53201 Wednesday, October 20, 2021 Approved
Visual Studio Code (Install) 1.61.1 28339 Friday, October 15, 2021 Approved
Visual Studio Code (Install) 1.61.0 32598 Friday, October 8, 2021 Approved
Visual Studio Code (Install) 1.60.2 52719 Wednesday, September 22, 2021 Approved
Visual Studio Code (Install) 1.60.1 36347 Tuesday, September 14, 2021 Approved
Visual Studio Code (Install) 1.60.0 40378 Thursday, September 2, 2021 Approved
Visual Studio Code (Install) 1.59.1 43632 Friday, August 20, 2021 Approved
Visual Studio Code (Install) 1.59.0 43204 Thursday, August 5, 2021 Approved
Visual Studio Code (Install) 1.58.2 54771 Thursday, July 15, 2021 Approved
Visual Studio Code (Install) 1.58.1 16642 Tuesday, July 13, 2021 Approved
Visual Studio Code (Install) 1.58.0 24359 Thursday, July 8, 2021 Approved
Visual Studio Code (Install) 1.57.1 51952 Friday, June 18, 2021 Approved
Visual Studio Code (Install) 1.57.0 34423 Thursday, June 10, 2021 Approved
Visual Studio Code (Install) 1.56.2 66965 Thursday, May 13, 2021 Approved
Visual Studio Code (Install) 1.56.1 17800 Tuesday, May 11, 2021 Approved
Visual Studio Code (Install) 1.56.0 26580 Thursday, May 6, 2021 Approved
Visual Studio Code (Install) 1.55.2 55256 Tuesday, April 13, 2021 Approved
Visual Studio Code (Install) 1.55.1 22195 Friday, April 9, 2021 Approved
Visual Studio Code (Install) 1.55.0 27592 Wednesday, March 31, 2021 Approved
Visual Studio Code (Install) 1.54.3 48365 Tuesday, March 16, 2021 Approved
Visual Studio Code (Install) 1.54.2 21356 Friday, March 12, 2021 Approved
Visual Studio Code (Install) 1.54.1 28684 Friday, March 5, 2021 Approved
Visual Studio Code (Install) 1.54.0 5954 Thursday, March 4, 2021 Approved
Visual Studio Code (Install) 1.53.2 51285 Friday, February 12, 2021 Approved
Visual Studio Code (Install) 1.53.1 15596 Tuesday, February 9, 2021 Approved
Visual Studio Code (Install) 1.53.0 22963 Thursday, February 4, 2021 Approved
Visual Studio Code (Install) 1.52.1 80826 Thursday, December 17, 2020 Approved
Visual Studio Code (Install) 1.52.0 20743 Friday, December 11, 2020 Approved
Visual Studio Code (Install) 1.51.1 55470 Thursday, November 12, 2020 Approved
Visual Studio Code (Install) 1.51.0 24030 Friday, November 6, 2020 Approved
Visual Studio Code (Install) 1.50.1 44197 Thursday, October 15, 2020 Approved
Visual Studio Code (Install) 1.50.0 24085 Thursday, October 8, 2020 Approved
Visual Studio Code (Install) 1.49.3 20457 Saturday, October 3, 2020 Approved
Visual Studio Code (Install) 1.49.2 23421 Friday, September 25, 2020 Approved
Visual Studio Code (Install) 1.49.1 22965 Friday, September 18, 2020 Approved
Visual Studio Code (Install) 1.49.0 22087 Friday, September 11, 2020 Approved
Visual Studio Code (Install) 1.48.2 33720 Tuesday, August 25, 2020 Approved
Visual Studio Code (Install) 1.48.1 17643 Thursday, August 20, 2020 Approved
Visual Studio Code (Install) 1.48.0 19635 Thursday, August 13, 2020 Approved
Visual Studio Code (Install) 1.47.3 33088 Tuesday, July 28, 2020 Approved
Visual Studio Code (Install) 1.47.2 24813 Friday, July 17, 2020 Approved
Visual Studio Code (Install) 1.47.1 10243 Tuesday, July 14, 2020 Approved
Visual Studio Code (Install) 1.47.0 15084 Friday, July 10, 2020 Approved
Visual Studio Code (Install) 1.46.1 36055 Thursday, June 18, 2020 Approved
Visual Studio Code (Install) 1.46.0 22741 Thursday, June 11, 2020 Approved
Visual Studio Code (Install) 1.45.1 44725 Friday, May 15, 2020 Approved
Visual Studio Code (Install) 1.45.0 18811 Friday, May 8, 2020 Approved
Visual Studio Code (Install) 1.44.2 35856 Friday, April 17, 2020 Approved
Visual Studio Code (Install) 1.44.1 9859 Tuesday, April 14, 2020 Approved
Visual Studio Code (Install) 1.44.0 18358 Thursday, April 9, 2020 Approved
Visual Studio Code (Install) 1.43.2 28775 Wednesday, March 25, 2020 Approved
Visual Studio Code (Install) 1.43.1 19808 Thursday, March 19, 2020 Approved
Visual Studio Code (Install) 1.43.0 26285 Tuesday, March 10, 2020 Approved
Visual Studio Code (Install) 1.42.1 46580 Friday, February 14, 2020 Approved
Visual Studio Code (Install) 1.42.0 20538 Friday, February 7, 2020 Approved
Visual Studio Code (Install) 1.41.1 59304 Friday, December 20, 2019 Approved
Visual Studio Code (Install) 1.41.0 16420 Friday, December 13, 2019 Approved
Visual Studio Code (Install) 1.40.2 27207 Tuesday, November 26, 2019 Approved
Visual Studio Code (Install) 1.40.1 23191 Thursday, November 14, 2019 Approved
Visual Studio Code (Install) 1.40.0 14892 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