Skip to content

Instantly share code, notes, and snippets.

@louissimps
Last active August 29, 2015 14:13
Show Gist options
  • Save louissimps/62c6d5501d876fec25a9 to your computer and use it in GitHub Desktop.
Save louissimps/62c6d5501d876fec25a9 to your computer and use it in GitHub Desktop.
My default dev setup
# A simple BoxStarter script for use with http://boxstarter.org/WebLauncher
# Updates a Windows machine and installs a range of developer tools
# Show more info for files in Explorer
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Enable-RemoteDesktop
# Allow running PowerShell scripts
Update-ExecutionPolicy Unrestricted
# Allow unattended reboots
$Boxstarter.RebootOk=$true
$Boxstarter.AutoLogin=$true
# Update Windows and reboot if necessary
#Install-WindowsUpdate -AcceptEula
#if (Test-PendingReboot) { Invoke-Reboot }
#Browsers
cinst GoogleChrome
cinst Firefox
cinst Opera
cinst ie11
#git apps
cinst git.install
cinst poshgit
cinst git-credential-winstore
#Python
cinst python
# Text Editors
cinst sublimetext2
cinst notepadplusplus.install
#IDE
cinst VisualStudio2013Ultimate
#Ruby (not by default)
cinst ruby
cinst ruby.devkit
#Web/Node
cinst fiddler4
cinst nodejs.install
cinst nodejs.commandline
#Utilities
cinst linqpad4
cinst markpad
cinst paint.net
cinst 7zip.install
cinst teamviewer
cinst atom
cinst adobereader
cinst ccleaner
cinst putty
cinst dropbox
cinst fiddler
cinst f.lux
cinst prey
cinst displayfusion
cinst databasenet
cinst wincommandpaste
#System Tools
cinst wget
cinst curl
cinst console2
cinst vagrant
cinst clover
cinst superbenchmarker
cinst malwarebytes
cinst graphviz
cinst virtualbox
#Environment
cinst Microsoft-Hyper-V-All -source windowsFeatures
cinst IIS-WebServerRole -source windowsfeatures
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment