Created
July 24, 2022 06:47
-
-
Save sixeyed/65c6a6d55a69413cbd1511c62ed77b6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Write-Output '* Installing Chocolatey' | |
Set-ExecutionPolicy Bypass -Scope Process -Force | |
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 | |
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
Write-Output '* Installing tools' | |
choco install -y git | |
choco install -y vscode | |
Write-Output '-VM setup script done-' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment