2020-08-08 08:01:33 +03:00
|
|
|
################################################################################
|
|
|
|
|
## File: Install-WebPI.ps1
|
|
|
|
|
## Desc: Install WebPlatformInstaller
|
|
|
|
|
################################################################################
|
|
|
|
|
|
2023-11-22 15:14:08 +01:00
|
|
|
Install-Binary -Type MSI `
|
2025-04-11 11:53:08 -06:00
|
|
|
-Url 'https://go.microsoft.com/fwlink/?LinkId=287166' `
|
2025-06-30 21:33:57 -04:00
|
|
|
-ExpectedSubject $(Get-MicrosoftPublisher)
|
2020-08-08 08:01:33 +03:00
|
|
|
|
2023-10-11 11:02:59 +02:00
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "WebPlatformInstaller"
|