Skip to content

Instantly share code, notes, and snippets.

@elliott-beach
Last active June 23, 2023 15:05
Show Gist options
  • Save elliott-beach/ba92c80f1b39f5cae00ab69dfa1efdb8 to your computer and use it in GitHub Desktop.
Save elliott-beach/ba92c80f1b39f5cae00ab69dfa1efdb8 to your computer and use it in GitHub Desktop.
Install Visual Studio Code with Powershell
$ProgressPreference = 'SilentlyContinue'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest "https://update.code.visualstudio.com/latest/win32-x64-user/stable" -OutFile $env:Temp/codesetup.exe;
Invoke-Expression "$env:Temp/codesetup.exe /VERYSILENT /mergetasks=!runcode";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment