Last active
August 29, 2015 14:19
-
-
Save synhershko/5600a5b4d6c356adf63a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# To run, type the following in Powershell: | |
# http://boxstarter.org/package/nr/url?*url to raw gist* | |
# Boxstarter options | |
$Boxstarter.RebootOk=$true # Allow reboots? | |
$Boxstarter.NoPassword=$true # Is this a machine with no login password? | |
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot | |
# Update Windows and reboot if necessary | |
Install-WindowsUpdate -AcceptEula | |
if (Test-PendingReboot) { Invoke-Reboot } | |
# Basic setup | |
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableShowStartOnActiveScreen -EnableShowAppsViewOnStartScreen -EnableSearchEverywhereInAppsView -EnableListDesktopAppsFirst | |
Disable-UAC | |
Disable-InternetExplorerESC | |
Set-TaskbarSmall | |
# Install Visual Studio 2013 Professional | |
cinst VisualStudio2013Professional -InstallArguments WebTools | |
# VS updates and extensions | |
cinst VS2013.4 | |
Install-ChocolateyVsixPackage PowerShellTools http://visualstudiogallery.msdn.microsoft.com/c9eb3ba8-0c59-4944-9a62-6eee37294597/file/112013/6/PowerShellTools.vsix | |
cinst resharper | |
#cinstm TestDriven.Net | |
cinst ncrunch2.vs2013 | |
cinst dotpeek | |
cinst 7zip.install | |
cinst fiddler4 | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment