Last active
December 20, 2016 14:24
-
-
Save rroman81/63af409256326904e76cc73e44077fea to your computer and use it in GitHub Desktop.
Gist to provision the VS2015 custom extensions via boxstarter
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
Install-WindowsUpdate -Full | |
# Visual Studio 2015 | |
cinst VisualStudio2015Enterprise | |
cinst VisualStudioCode | |
# VS extensions | |
Install-ChocolateyVsixPackage PowerShellTools https://visualstudiogallery.msdn.microsoft.com/c9eb3ba8-0c59-4944-9a62-6eee37294597/file/199313/2/PowerShellTools.14.0.vsix | |
Install-ChocolateyVsixPackage WebEssentials2015 https://visualstudiogallery.msdn.microsoft.com/ee6e6d8c-c837-41fb-886a-6b50ae2d06a2/file/146119/40/Web%20Essentials%202015.1%20v1.0.211.vsix | |
Install-ChocolateyVsixPackage T4Toolbox https://visualstudiogallery.msdn.microsoft.com/34b6d489-afbc-4d7b-82c3-dded2b726dbc/file/165481/4/T4Toolbox.14.0.0.76.vsix | |
Install-ChocolateyVsixPackage StopOnFirstBuildError https://visualstudiogallery.msdn.microsoft.com/91aaa139-5d3c-43a7-b39f-369196a84fa5/file/44205/7/StopOnFirstBuildError.vsix | |
Install-ChocolateyVsixPackage EditorConfig https://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328/file/75539/12/EditorConfigPlugin.vsix | |
Install-ChocolateyVsixPackage MarkdownEditor https://visualstudiogallery.msdn.microsoft.com/eaab33c3-437b-4918-8354-872dfe5d1bfe/file/216970/25/Markdown%20Editor%20v1.10.186.vsix | |
Install-ChocolateyVisxPackage SyntaxHighlightingPack https://visualstudiogallery.msdn.microsoft.com/d92fd742-bab3-4314-b866-50b871d679ee/file/225232/26/Syntax%20Highlighting%20Pack%20v2.3.100.vsix | |
# Web PI Extensions | |
cinst VWDOrVs2015AzurePack.2.9 -source webpi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment