mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* fix webPlatformInstaller installation * Install-WebPI -> Install-WebPlatformInstaller * add tests for webPlatformInstaller * fix webPlatformInstaller test
11 lines
601 B
PowerShell
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" |