Skip to content

Instantly share code, notes, and snippets.

@asarenski
Last active June 4, 2017 14:47
Show Gist options
  • Save asarenski/d0679a2332eb2fb8f9eb0a05cd3684ac to your computer and use it in GitHub Desktop.
Save asarenski/d0679a2332eb2fb8f9eb0a05cd3684ac to your computer and use it in GitHub Desktop.
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
cinst cpu-z -y
cinst battle.net -y
cinst steam -y
cinst cygwin -y
cinst vlc -y
cinst atom -y
Write-Host
@asarenski
Copy link
Author

remember to open new ps window and Set-ExecutionPolicy RemoteSigned first

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