Skip to content

Instantly share code, notes, and snippets.

@kdowswell
Last active January 18, 2017 15:04
Show Gist options
  • Save kdowswell/142f737d2b2827f22ebdc53e61738247 to your computer and use it in GitHub Desktop.
Save kdowswell/142f737d2b2827f22ebdc53e61738247 to your computer and use it in GitHub Desktop.
# 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 -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
Disable-InternetExplorerESC
Disable-UAC
if (Test-PendingReboot) { Invoke-Reboot }
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
# Install Visual Studio 2015 Professional
choco install visualstudio2015professional
if (Test-PendingReboot) { Invoke-Reboot }
#Other dev tools
choco install fiddler4
choco install beyondcompare
choco install NugetPackageExplorer
choco install linqpad4
choco install visualstudiocode
choco install notepadplusplus
choco install sublimetext2
choco install git
choco install resharper
#Browsers
choco install googlechrome
choco install firefox
#Other essential tools
choco install 7zip
choco install adobereader
choco install javaruntime
#Other programs
choco install skype
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe"
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft VS Code\Code.exe"
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Notepad++\notepad++.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment