2020-08-08 08:01:33 +03:00
|
|
|
################################################################################
|
|
|
|
|
## 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"
|
2022-01-20 15:59:37 +03:00
|
|
|
Install-Binary -Url $webPlatformInstallerUrl -Name $webPlatformInstallerFile
|
2020-08-08 08:01:33 +03:00
|
|
|
|
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "WebPlatformInstaller"
|