Update the Windows install.

This commit is contained in:
markjcrane
2018-01-03 01:13:29 -07:00
parent 4829f22abf
commit 74abcb8196
26 changed files with 655 additions and 484 deletions

View File

@@ -0,0 +1,12 @@
. .\resources\get-file.ps1
if (-not (Test-Path "c:\Program Files\7-Zip\7z.exe")) {
$cpu = $env:PROCESSOR_ARCHITECTURE
Write-Host "Downloading and Installing 7-Zip for $cpu" -ForegroundColor Cyan
if ($cpu -eq "x86") {
$zip7 = Get-File http://www.7-zip.org/a/7z1604.msi
}
else {
$zip7 = Get-File http://www.7-zip.org/a/7z1604-x64.msi
}
Start-Process msiexec "/i $zip7 /passive /qb" -Wait
}