Skip to content

Instantly share code, notes, and snippets.

@winiciuscota
Last active January 6, 2017 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save winiciuscota/09872b88039464d1eccf to your computer and use it in GitHub Desktop.
Save winiciuscota/09872b88039464d1eccf to your computer and use it in GitHub Desktop.
Script to setup a new windows machine with the programs I use
REM -----------------------------------------------
REM Install basic programs
REM -----------------------------------------------
echo Installing chocolatey
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
echo Installing utility programs
set utilitarian_programs=googlechrome firefox 7zip conemu qbittorrent dropbox steam skype libreoffice foxitreader tightvnc vlc foobar2000 calibre yumi irfanview rufus winginx sandboxie vmwareplayer flashplayerplugin hpusbdisk fiddler4
for %%a in (%utilitarian_programs%) do (
cinst %%a --y
)
echo Installing development tools
set development_tools=git notepadplusplus atom visualstudiocode visualstudio2015community heroku-toolbelt
for %%a in (%development_tools%) do (
cinst %%a --y
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment