Created
February 23, 2015 20:43
-
-
Save geoffreysmith/888bfd715fa3bd841e5f to your computer and use it in GitHub Desktop.
Revisions
-
geoffreysmith created this gist
Feb 23, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,58 @@ # Basic setup Update-ExecutionPolicy Unrestricted Set-ExplorerOptions -showHidenFilesFoldersDrives -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 } # Install Visual Studio 2013 Professional choco install VisualStudio2013Professional -InstallArguments WebTools if (Test-PendingReboot) { Invoke-Reboot } # Visual Studio SDK required for PoshTools extension choco install VS2013SDK if (Test-PendingReboot) { Invoke-Reboot } choco install DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install. if (Test-PendingReboot) { Invoke-Reboot } # VS extensions Install-ChocolateyVsixPackage PowerShellTools http://visualstudiogallery.msdn.microsoft.com/c9eb3ba8-0c59-4944-9a62-6eee37294597/file/112013/6/PowerShellTools.vsix Install-ChocolateyVsixPackage StopOnFirstBuildError http://visualstudiogallery.msdn.microsoft.com/91aaa139-5d3c-43a7-b39f-369196a84fa5/file/44205/3/StopOnFirstBuildError.vsix #Other dev tools choco install fiddler4 choco install beyondcompare choco install ProcExp #choco install sysinternals choco install NugetPackageExplorer choco install windbg choco install linqpad4 choco install resharper choco install sqlserver2014express choco install conemu choco install tortoisesvn #Browsers choco install googlechrome choco install firefox #Other essential tools choco install 7zip choco install adobereader choco install 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" Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe"