Skip to content

Instantly share code, notes, and snippets.

@Thwaitesy
Last active August 29, 2015 14:25
Show Gist options
  • Save Thwaitesy/f24a8ef3acfdee5cf7ce to your computer and use it in GitHub Desktop.
Save Thwaitesy/f24a8ef3acfdee5cf7ce to your computer and use it in GitHub Desktop.
Boxstarter:Development-Env
# Basic Setup
Disable-MicrosoftUpdate
Disable-InternetExplorerESC
Disable-UAC
Update-ExecutionPolicy Unrestricted -Force
Set-ExplorerOptions -showFileExtensions -EnableShowFullPathInTitleBar
# Main Install
choco install mssqlserver2012express -y
choco install VisualStudio2013Ultimate -InstallArguments "/Features:WebTools" -y
choco install VS2013.4 -y
choco install notepadplusplus -y
choco install google-chrome-x64 -y
choco install firefox -y
choco install VirtualCloneDrive -y
choco install git -y
choco install fiddler4 -y
choco install beyondcompare -y
choco install putty -y
choco install markdownpad2 -y
choco install paint.net -y
choco install IIS-WebServerRole -source windowsfeatures -y
choco install dropbox
# Taskbar pins
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe"
Install-ChocolateyPinnedTaskBarItem "$env:windir\system32\mstsc.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment