Last active
June 4, 2017 14:47
-
-
Save asarenski/d0679a2332eb2fb8f9eb0a05cd3684ac to your computer and use it in GitHub Desktop.
Choco Install Script
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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
remember to open new ps window and
Set-ExecutionPolicy RemoteSigned
first