Skip to content

Instantly share code, notes, and snippets.

@gcapnias
Last active June 7, 2021 06:42
Show Gist options
  • Select an option

  • Save gcapnias/63af648ef6b1bd2800897ec6ebe29b82 to your computer and use it in GitHub Desktop.

Select an option

Save gcapnias/63af648ef6b1bd2800897ec6ebe29b82 to your computer and use it in GitHub Desktop.
Proof of concept - Quick developer workstation in Windows Sandbox.
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
@gcapnias
Copy link
Author

gcapnias commented Nov 11, 2020

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'))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment