Last active
May 26, 2020 01:56
-
-
Save jarshwah/58f5f9f78d43ae269545 to your computer and use it in GitHub Desktop.
Box Starter - VS2015 Dev
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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