Last active
August 29, 2015 13:56
-
-
Save danhively/9143315 to your computer and use it in GitHub Desktop.
dev-vm Windows 8.1
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
| ##START http://boxstarter.org/package/nr/url? | |
| ###################### Windows ###################### | |
| Install-WindowsUpdate -AcceptEula | |
| #Set-ExecutionPolicy RemoteSigned | |
| Set-ExplorerOptions -showHiddenFilesFoldersDrives -showFileExtensions -showProtectedOSFiles | |
| Enable-RemoteDesktop | |
| cinst IIS-WebServerRole -source windowsfeatures | |
| cinst IIS-HttpCompressionDynamic -source windowsfeatures | |
| cinst IIS-ManagementScriptingTools -source windowsfeatures | |
| cinst IIS-WindowsAuthentication -source windowsfeatures | |
| cinst IIS-DigestAuthentication -source windowsfeatures | |
| cinst IIS-BasicAuthentication -source windowsfeatures | |
| cinst IIS-ASPNET -source windowsfeatures | |
| cinst IIS-ASPNET45 -source windowsfeatures | |
| cinst IIS-NetFxExtensibility -source windowsfeatures | |
| cinst IIS-NetFxExtensibility45 -source windowsfeatures | |
| cinst IIS-HttpRedirect -source windowsfeatures | |
| cinst vcredist2012 | |
| cinst binroot | |
| cinst DotNet4.5.1 | |
| ###################### Folders ###################### | |
| # C:\dev | |
| if (!(Test-Path -Path C:\dev )) { | |
| mkdir C:\dev | |
| } | |
| # C:\dev\CodePlex | |
| if (!(Test-Path -Path C:\dev\CodePlex )) { | |
| mkdir C:\dev\CodePlex | |
| } | |
| # C:\dev\Data | |
| if (!(Test-Path -Path C:\dev\Data )) { | |
| mkdir C:\dev\Data | |
| } | |
| # C:\dev\GitHub | |
| if (!(Test-Path -Path C:\dev\GitHub )) { | |
| mkdir C:\dev\GitHub | |
| } | |
| # C:\dev\Projects | |
| if (!(Test-Path -Path C:\dev\Projects )) { | |
| mkdir C:\dev\Projects | |
| } | |
| ###################### Visual Studio ###################### | |
| cinst stylecop | |
| Install-ChocolateyVsixPackage "Durandal2.0" "http://durandaljs.com/version/2_0_0/DurandalTemplate.vsix" | |
| Install-ChocolateyVsixPackage "GitSourceControlProvider" "http://visualstudiogallery.msdn.microsoft.com/63a7e40d-4d71-4fbb-a23b-d262124b8f4c/file/29105/46/GitSccProvider.vsix" | |
| Install-ChocolateyVsixPackage "PowerShellVS" "http://visualstudiogallery.msdn.microsoft.com/c9eb3ba8-0c59-4944-9a62-6eee37294597/file/112013/5/PowerShellTools.vsix" | |
| Install-ChocolateyVsixPackage "PowerTools" "http://visualstudiogallery.msdn.microsoft.com/dbcb8670-889e-4a54-a226-a48a15e4cace/file/117115/1/ProPowerTools.vsix" | |
| Install-ChocolateyVsixPackage "WebEssentials" "http://visualstudiogallery.msdn.microsoft.com/56633663-6799-41d7-9df7-0f2a504ca361/file/105627/24/WebEssentials2013.vsix" | |
| cinst VS2013.1 | |
| cinst MarkdownMode | |
| cinst jivkok.vsextensions.2013 | |
| cinst bdukes.boxstarter | |
| ###################### Development ###################### | |
| cinst AzureStorageExplorer | |
| cinst dotpeek | |
| cinst git.install | |
| cinst githubforwindows | |
| cinst linqpad4 | |
| cinst PowerGUI | |
| cinst ScriptCs | |
| cinst windbg | |
| cinst java.jdk | |
| ###################### Web Browsers ###################### | |
| cinst GoogleChrome | |
| cinst firefox | |
| cinst Opera | |
| cinst Safari | |
| cinst flashplayerplugin | |
| ###################### Web Browser Extensions ###################### | |
| cinst adblockpluschrome | |
| cinst adblockplusfirefox | |
| ###################### Applications ###################### | |
| cinst 7zip.commandline | |
| cinst notepadplusplus.install | |
| cinst winrar | |
| cinst adexplorer | |
| cinst fiddler4 | |
| cinst git | |
| cinst githubforwindows | |
| cinst logexpert | |
| cinst logparser | |
| cinst logparser.lizardgui | |
| cinst nodejs.commandline | |
| cinst notepadplusplus | |
| cinst NugetPackageExplorer | |
| cinst PowerGUI | |
| cinst SQL2012.PowerShell | |
| cinst stylecop | |
| ###################### Shortcuts ###################### | |
| Install-ChocolateyPinnedTaskBarItem "$($boxstarter.programfiles86)\Google\Chrome\Application\chrome.exe" | |
| Install-ChocolateyPinnedTaskBarItem "$($boxstarter.programfiles86)\Mozilla Firefox\firefox.exe" | |
| Install-ChocolateyPinnedTaskBarItem "$($boxstarter.programfiles86)\Notepad++\notepad++.exe" | |
| Install-ChocolateyPinnedTaskBarItem "$env:windir\system32\cmd.exe" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment