Last active
June 7, 2021 06:42
-
-
Save gcapnias/63af648ef6b1bd2800897ec6ebe29b82 to your computer and use it in GitHub Desktop.
Proof of concept - Quick developer workstation in Windows Sandbox.
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
| Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
| choco feature enable -n allowGlobalConfirmation | |
| choco install notepad2-mod | |
| choco install winrar | |
| choco install git | |
| choco install sourcetree | |
| choco install dotnetcore-sdk | |
| choco install nodejs-lts | |
| choco install vscode | |
| choco install putty | |
| choco install winmerge | |
| choco install dotpeek | |
| choco install autoruns | |
| choco install md5sums |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run the following in elevated PowerShell prompt:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/gcapnias/63af648ef6b1bd2800897ec6ebe29b82/raw/a53219e5567ec4c5c7e4942e7c6cfa39e7999816/workstation.ps1'))