Simplifies Invoke-WebRequest when downloading WiX

This commit is contained in:
Steve Dower 2015-05-05 08:53:25 -07:00
Родитель 73d0e4c448
Коммит d474ded6b2
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -8,10 +8,7 @@ function GetWix {
$file += ".zip"
Write-Output " - temporary storage: $file"
[IO.File]::WriteAllBytes(
$file,
(Invoke-WebRequest "https://wix.codeplex.com/downloads/get/1421697" -UseBasicParsing).Content
)
Invoke-WebRequest "https://wix.codeplex.com/downloads/get/1421697" -UseBasicParsing -OutFile $file
$shell = New-Object -COM Shell.Application
$dest = $shell.NameSpace("$target")