Last active
March 11, 2018 17:23
-
-
Save alexpeta/10936441 to your computer and use it in GitHub Desktop.
A developer's new PC install based on Chocolatey
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
| @echo off installing the sweet goodness : Chocolatey | |
| @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin | |
| '------------------------ usual user programs ---------------------- | |
| @echo installing usual user stuff | |
| @echo VLC player : something to watch movies with | |
| cinst vlc | |
| @echo TweetDeck : a guys gotta tweet | |
| cinst tweetdeck | |
| @echo Skype : well you gotta chat and see friends | |
| cinst skype | |
| @echo Chrome : suuuurfiiiin. web surfin. | |
| cinst GoogleChrome | |
| @echo Chrome AdBlock Plus : and now to get rid of those ads | |
| cinst adblockpluschrome | |
| @echo TeamViewer : remote control | |
| cinst teamviewer | |
| @echo uTorrent : uhm yeah. | |
| cinst uTorrent | |
| @echo Steam : playin dem videoh gamez | |
| cinst steam | |
| @echo Flash Player: | |
| cinst flashplayerplugin | |
| @echo Adobe Reader | |
| cinst adobereader | |
| @echo TeamSpeak : for when skype is a nono | |
| cinst Teamspeak3 | |
| '------------------ a programers tools ---------------------------- | |
| @echo installing notepad ++ | |
| cinst notepadplusplus | |
| @installing github for windows | |
| cinst githubforwindows | |
| @echo FileZilla : FTP is your friend | |
| cinst filezilla | |
| @echo TortoiseSVN : svn client | |
| cinst tortoisesvn | |
| @echo Nuget Package Explorer | |
| cinst NugetPackageExplorer | |
| @echo Fiddler4 : track them http requests | |
| cinst fiddler4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also take a look at boxstarter.... It will change your setup here. Plus more provisioning utilities - https://boxstarter.org (uses chocolatey by the way so not much needs to change)