Last active
July 23, 2020 23:44
-
-
Save hashereware/4e0c2e5ac36c2c606ce0c12deb8fe524 to your computer and use it in GitHub Desktop.
Install & update apps via Chocolatey
This file contains 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
@echo off | |
choco install hollowshunter -y | |
choco install pesieve -y | |
choco install pebear -y | |
choco install processhacker -y | |
choco install sysinternals -y | |
choco install x64dbg.portable -y | |
choco install dnspy -y | |
choco install fiddler -y | |
choco install ida-free -y | |
choco install explorersuite -y | |
choco install reshack -y | |
choco install ollydbg -y | |
choco install hxd -y | |
choco install baretail -y | |
choco install notepadplusplus -y | |
choco install yasm -y | |
choco install git -y | |
choco install cmake -y | |
echo Finished! | |
pause |
This file contains 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
@echo off | |
choco update hollowshunter -y | |
choco update pesieve -y | |
choco update pebear -y | |
choco update processhacker -y | |
choco update sysinternals -y | |
choco update x64dbg.portable -y | |
choco update dnspy -y | |
choco update fiddler -y | |
choco update ida-free -y | |
choco update explorersuite -y | |
choco update reshack -y | |
choco update ollydbg -y | |
choco update hxd -y | |
choco update baretail -y | |
choco update notepadplusplus -y | |
choco update yasm -y | |
choco update git -y | |
choco update cmake -y | |
echo Finished! | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment