Advertisement
csharpforevermore

Chocolatey Dev Env Setup

Feb 28th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ECHO OFF
  2. REM Install Chocolatey
  3. @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
  4.  
  5. REM install password manager
  6. cinst -y dashlane
  7.  
  8. REM Install browsers
  9. cinst -y googlechrome
  10. cinst -y firefox
  11. cinst -y waterfox
  12.  
  13. REM install text editors
  14. cinst -y brackets
  15. cinst -y sublimetext3
  16. cinst -y sublimetext3.packagecontrol
  17. cinst -y notepadplusplus.install
  18.  
  19. REM install version control tools
  20. cinst -y git
  21. cinst -y sourcetree
  22. cinst -y tortoisegit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement