Skip to content

Instantly share code, notes, and snippets.

@DavidBrower
Last active January 27, 2018 20:48
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 DavidBrower/139ad20e3a40f69af66854ccbc1a759b to your computer and use it in GitHub Desktop.
Save DavidBrower/139ad20e3a40f69af66854ccbc1a759b to your computer and use it in GitHub Desktop.
Boxstarter for Windows Development
# Configure Windows
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Update-ExecutionPolicy Unrestricted
# cinst -y Microsoft-Hyper-V-All -source windowsFeatures
#Visual Studio 2017 Community Edition
cinst -y visualstudio2017community
## Git
cinst -y git
cinst -y git-credential-winstore
## Tools
cinst -y vim
cinst -y Gow
cinst -y Postman
## Docker
cinst -y docker-for-windows
if (Test-PendingReboot) { Invoke-Reboot }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment