Advertisement
viper25

Setup Dev env with chocolatey

Apr 12th, 2018 (edited)
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.81 KB | None | 0 0
  1. # Install all the packages
  2. # -y confirm yes for any prompt during the install process 
  3.  
  4. # Install Applications
  5. choco install notepadplusplus -fy
  6. # choco install visualstudiocode -fy
  7. choco install sharex -fy
  8. choco install GoogleChrome -fy
  9. #choco install putty -fy
  10. #choco install ccleaner -fy
  11. #choco install beyondcompare -fy
  12.  
  13. # Install Utilities
  14. choco install sourcetree -fy
  15. choco install sourcetree-disableautoupdate  -fy
  16. #choco install sysinternals -fy
  17. #choco install windirstat -fy
  18. choco install 7zip -fy
  19. choco install git.portable -fy
  20. choco install git
  21. choco install microsoft-windows-terminal --pre
  22.  
  23. #Install Jekyll
  24. choco install ruby -y
  25. gem install jekyll bundler jekyll-paginate html-proofer
  26. #If behind a proxy, install as below:
  27. sudo gem install jekyll bundler --http-proxy=http://proxy.com:8080
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement