Skip to content

Instantly share code, notes, and snippets.

@jarshwah
Last active May 26, 2020 01:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save jarshwah/58f5f9f78d43ae269545 to your computer and use it in GitHub Desktop.
Save jarshwah/58f5f9f78d43ae269545 to your computer and use it in GitHub Desktop.
Box Starter - VS2015 Dev
# From a command prompt:
# START http://boxstarter.org/package/nr/url?https://gist.githubusercontent.com/jarshwah/58f5f9f78d43ae269545/raw/e5a2076fbe76106b19ecaa62355776aa0a02fc91/boxstarter.ps1
# Boxstarter options
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
# Basic setup
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
Disable-InternetExplorerESC
Disable-UAC
Set-TaskbarSmall
if (Test-PendingReboot) { Invoke-Reboot }
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
cinstm PowerShell
cinstm DotNet3.5
cinstm DotNet4.0
cinstm DotNet4.5
if (Test-PendingReboot) { Invoke-Reboot }
#Other dev tools
cinstm Atom
cinstm cmder
cinstm git
cinstm git.install
cinstm git-credential-winstore -Version 1.2.0.0
cinstm resharper
cinstm sysinternals
cinstm Devbox-Clink
cinstm linqpad4
cinstm SublimeText3
cinstm SublimeText3.PackageControl
cinstm dotPeek
cinstm putty
#Browsers
cinstm googlechrome
cinstm firefox
#Other essential tools
cinstm 7zip
cinstm adobereader
cinstm javaruntime
#cinst Microsoft-Hyper-V-All -source windowsFeatures
cinst IIS-WebServerRole -source windowsfeatures
cinst IIS-HttpCompressionDynamic -source windowsfeatures
cinst IIS-ManagementScriptingTools -source windowsfeatures
cinst IIS-WindowsAuthentication -source windowsfeatures
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment