Skip to content

Instantly share code, notes, and snippets.

@tillig
Last active April 6, 2017 20:34
Show Gist options
  • Save tillig/6f92842f10e062b714e1 to your computer and use it in GitHub Desktop.
Save tillig/6f92842f10e062b714e1 to your computer and use it in GitHub Desktop.
Boxstarter - Windows Dev Machine Base Tools
# Base explorer features
$Boxstarter.RebootOk = $true
Enable-MicrosoftUpdate
Update-ExecutionPolicy -Policy RemoteSigned
# Powershell 5 / WMF
cinst powershell
# Installation platforms
cinst lessmsi
cinst webpicmd
cinst nuget.commandline
# Browsers
cinst GoogleChrome
cinst Firefox
# Java (both 32-bit and 64-bit)
cinst javaruntime
# Node.js
cinst nodejs.install
npm install -g jshint
npm install -g csslint
npm install -g js-beautify
npm install -g bower
npm install -g gulp
# Python
cinst python --version 2.7.6
cinst pip
# Ruby
# Win/x64 version installer is messed up, doesn't work
# right with the DevKit and some packages.
cinst -x86 ruby
cinst ruby.devkit
# ScriptCS
cinst scriptcs
# General dev tools
cinst fiddler4
cinst 7zip.install
cinst clipx
cinst sublimetext3
cinst git
# Source code control extensions
cinst sourcetree
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment