Created
December 19, 2013 17:44
-
-
Save jstott/8043284 to your computer and use it in GitHub Desktop.
New (windows) machine software install script - few things removed/added from the original Source was liberally lifted from Rick Strahl's blog post at http://weblog.west-wind.com/posts/2013/Dec/19/Dell-XPS-15-review
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
REM on one line | |
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex | |
((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" | |
&& SET PATH=%PATH%;%systemdrive%\chocolatey\bin | |
REM Apps | |
cinst GoogleChrome | |
cinst Firefox | |
cinst imgburn | |
cinst notepadplusplus.install | |
cinst vlc | |
cinst filezilla | |
cinst skype | |
cinst paint.net | |
cinst dropbox | |
cinst curl | |
rem cinst iTunes | |
cinst speccy | |
cinst tweetdeck | |
REM DevTools | |
cinst git.install | |
cinst tortoisegit | |
cinst fiddler2 | |
cinst webpi | |
rem cinst poshgit | |
cinst SublimeText3 | |
cinst linqpad4 | |
cinst beyondcompare | |
cinst SourceTree | |
cinst Ghostscript | |
REM install after VS.NET is installed | |
cinst resharper | |
cinst reflector |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment