Skip to content

Instantly share code, notes, and snippets.

View JanicePalesah's full-sized avatar

JanicePalesah

View GitHub Profile
@ScottHutchinson
ScottHutchinson / install-vsix.ps1
Last active June 14, 2024 18:39
PowerShell scripts for batch installing Visual Studio extensions
# Based on http://nuts4.net/post/automated-download-and-installation-of-visual-studio-extensions-via-powershell
param([String] $PackageName)
$ErrorActionPreference = "Stop"
$baseProtocol = "https:"
$baseHostName = "marketplace.visualstudio.com"
$Uri = "$($baseProtocol)//$($baseHostName)/items?itemName=$($PackageName)"