Created
January 13, 2019 19:45
-
-
Save dariusz-wozniak/fb6ece3a1798c338b4e772f33537dcef to your computer and use it in GitHub Desktop.
π« Chocolatey decrap setup
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 "### Installing Chocolatey" | |
if (-Not (Test-Path "$env:chocolateyInstall")) | |
{ | |
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
} | |
Write-Host "### Configuring Chocolatey" | |
choco upgrade all | |
choco feature enable -n=allowGlobalConfirmation | |
choco feature enable -n=allowEmptyChecksums | |
Write-Host "### Updating apps" | |
choco upgrade all | |
Write-Host "### Installing basic apps" | |
choco install powershell | |
choco install cmdermini | |
Write-Host "### Installing anti-crap and fixing apps" | |
choco install adwcleaner | |
choco install combofix | |
choco install glaryutilities | |
choco install hijackthis | |
choco install kcleaner | |
choco install malwarebytes | |
choco install pc-decrapifier | |
choco install speccy | |
choco install spybot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment