Skip to content

Instantly share code, notes, and snippets.

@bitcrazed
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitcrazed/ee67ef93381d7f29d20e to your computer and use it in GitHub Desktop.
Save bitcrazed/ee67ef93381d7f29d20e to your computer and use it in GitHub Desktop.
Windows VM Boxstarter
# Description: Boxstarter Virtual Machine Script
# Author: Rich Turner <rich@bitcrazed.com>
# Last Updated: 2014-11-06
#--- Windows subsystems/Features ---
# cinst Microsoft-Hyper-V-All -source windowsFeatures
# cinst IIS-WebServerRole -source windowsfeatures
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Enable-RemoteDesktop
#--- Install VS & Dev Tools ---
#cinst VisualStudio2013Ultimate -InstallArguments "/Features:'Blend LightSwitch VC_MFC_Libraries WebTools Win8SDK WindowsPhone80' /ProductKey:9FJCR-X7BKD-G84RY-QYH4P-VYYB7"
#--- Additional packages and tools ---
cinst googlechrome
cinst paint.net
cinst sysinternals
cinst SourceCodePro
cinst git
cinst poshGIT
cinst nodejs
cinst curl
cinst vim
cinst 7Zip
cinst Putty
cinst Fiddler4
cinst SublimeText3
cinst SublimeText3.PackageControl
cinst SublimeText3.PowershellAlias
cinst BeyondCompare
cinst xUnit
#cinst xUnit.VisualStudio
#cinst ruby
#cinst python
Install-ChocolateyPinnedTaskBarItem "$env:windir\System32\WindowsPowerShell\v1.0\powershell.exe"
#Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
#Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe"
Install-ChocolateyFileAssociation ".txt" "$env:programfiles\Sublime Text 3\sublime_text.exe"
Install-WindowsUpdate -AcceptEula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment