Simple Chocolatey Installer
This is a simple example chocolatey installer for a friend.
Feel free to use as you wish.
# Set powershell policies.
Set-ExecutionPolicy Bypass -Scope Process -Force
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
# Install Chocolatey.
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# Disable global confirmation. (No need to use -y)
choco feature enable -n allowGlobalConfirmation
# Install software.
choco install googlechrome
choco install firefox
choco install Zzip
choco install vlc
choco install battle.net
choco install steam
Save this to something like install.ps1
.
Run as Administrator.