GEODE-2421: fix install of vs2015 to use PowerShell Install-Package This closes #386
Project: http://git-wip-us.apache.org/repos/asf/geode-native/repo Commit: http://git-wip-us.apache.org/repos/asf/geode-native/commit/826e7738 Tree: http://git-wip-us.apache.org/repos/asf/geode-native/tree/826e7738 Diff: http://git-wip-us.apache.org/repos/asf/geode-native/diff/826e7738 Branch: refs/heads/master Commit: 826e77384b9b97cda47cc021a645da459fbb56cf Parents: 3860832 Author: Ernest Burghardt <[email protected]> Authored: Fri Feb 3 13:32:34 2017 -0800 Committer: Dan Smith <[email protected]> Committed: Fri Feb 3 14:18:38 2017 -0800 ---------------------------------------------------------------------- packer/windows/install-vs-2015-community.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode-native/blob/826e7738/packer/windows/install-vs-2015-community.ps1 ---------------------------------------------------------------------- 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 @@ Import-Module Packer $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
