GEODE-2421: fix install of vs2015 to use PowerShell Install-Package
This closes #386
diff --git a/packer/windows/install-vs-2015-community.ps1 b/packer/windows/install-vs-2015-community.ps1
index c175410..a0999ff 100644
--- a/packer/windows/install-vs-2015-community.ps1
+++ b/packer/windows/install-vs-2015-community.ps1
@@ -6,4 +6,7 @@
 
 $log = "vs_community.log"
 
-choco install visualstudio2015community -confirm
+Install-Package https://download.microsoft.com/download/0/B/C/0BC321A4-013F-479C-84E6-4A2F90B11269/vs_community.exe `
+    -Hash ED8D88D0AB88832754302BFC2A374E803B3A21C1590B428092944272F9EA30FE `
+    -ArgumentList @("/quiet", "/log", $log) `
+    -Log $log -Verbose