Skip to content

Instantly share code, notes, and snippets.

View Zageron's full-sized avatar
🤔
rust rust revolution

Zageron Zageron

🤔
rust rust revolution
View GitHub Profile
@Zageron
Zageron / Install-VSCode.ps1
Last active January 22, 2018 20:52 — forked from EmmanuelTsouris/Install-VSCode.ps1
Download and Silently Install Visual Studio Code (VSCode)
#Install-VSCode
# Download URL, you may need to update this if it changes
$downloadUrl = "https://go.microsoft.com/fwlink/?Linkid=852157"
# What to name the file and where to put it
$installerFile = "vscode-install.exe"
$installerPath = (Join-Path $env:TEMP $installerFile)
# Install with the context menu and add to path options (and don't run code after install):