Skip to content

Instantly share code, notes, and snippets.

@ByronHawksmith
ByronHawksmith / bootstrap-windows.ps1
Last active August 3, 2022 10:34
Windows 10 Developer Setup 2022
# Fork of https://gist.github.com/stungeye/4fd96987cbc9e0c6676e71cb14468660
# Allow running PowerShell scripts
Update-ExecutionPolicy Unrestricted
# Install Chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
# Install Boxstarter
Set-ExecutionPolicy Unrestricted -Force