Skip to content

Instantly share code, notes, and snippets.

@asarenski
asarenski / setup_script.ps1
Last active June 4, 2017 14:47
Choco Install Script
Write-Host "Disabling UAC"
Set-ItemProperty -Path “HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System” -Name “EnableLUA” -Value “0”
Write-Host
Write-Host "Installing Chocolatey and applications"
iex ((new-object net.webclient).DownloadString('http://bit.ly/psChocInstall'))
Write-Host
Write-Host "Installing applications from Chocolatey"
cinst googlechrome -y