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
# 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 |