Skip to content

Instantly share code, notes, and snippets.

@TimMurphy
Last active November 22, 2015 19:00
Show Gist options
  • Save TimMurphy/5a9ef3035e95cb6f8cb2 to your computer and use it in GitHub Desktop.
Save TimMurphy/5a9ef3035e95cb6f8cb2 to your computer and use it in GitHub Desktop.
Boxstarter script for the Windows 10 Virtual Machine I use for screencasts
# Usage:
#
# - Open Internet Explorer or Edge
# - Go to http://boxstarter.org/package/url?https://gist.githubusercontent.com/TimMurphy/5a9ef3035e95cb6f8cb2/raw/screencasts-boxstarter.ps1
#
# See http://boxstarter.org/WebLauncher for more details.
# Windows configuration
Set-ExplorerOptions -showFileExtensions
Enable-MicrosoftUpdate
Install-WindowsUpdate -AcceptEula
# Notepad2 probably needs to be installed before gitpad
choco install -y notepad2-mod
# Chocolately packages in alphabetical order
choco install -y git
choco install -y gitpad
choco install -y sourcetree
choco install -y visualstudio2015community
# gcm (Git Credential Manager for Windows) probably needs to be installed after git
choco install -y gcm -pre
# Update Windows
Install-WindowsUpdate -AcceptEula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment