Files
runner-images/images/win/scripts/Installers/Install-WebPlatformInstaller.ps1
Dibir Magomedsaygitov 504b88bcb0 [Windows] Fix WebPlatformInstaller installation (#1379)
* fix webPlatformInstaller installation

* Install-WebPI -> Install-WebPlatformInstaller

* add tests for webPlatformInstaller

* fix webPlatformInstaller test
2020-08-08 08:01:33 +03:00

11 lines
601 B
PowerShell

################################################################################
## File: Install-WebPI.ps1
## Desc: Install WebPlatformInstaller
################################################################################
# Download and install WebPlatformInstaller
$webPlatformInstallerFile = "WebPlatformInstaller_x64_en-US.msi"
$webPlatformInstallerUrl = "http://go.microsoft.com/fwlink/?LinkId=287166"
Install-Binary -Url $webPlatformInstallerUrl -Name $webPlatformInstallerFile -ArgumentList ("/silent", "/install")
Invoke-PesterTests -TestFile "Tools" -TestName "WebPlatformInstaller"