mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
* [Windows] Refactor base Installer helper functions * Fix helper name * Fix name gen logic and improve error handling * Fix hash checking logic * Fix Install-VsixExtension invocation * Fix variable name in Install-OpenSSL.ps1 * Fix type for git downloadUrl
11 lines
451 B
PowerShell
11 lines
451 B
PowerShell
################################################################################
|
|
## File: Install-WebPI.ps1
|
|
## Desc: Install WebPlatformInstaller
|
|
################################################################################
|
|
|
|
Install-Binary -Type MSI `
|
|
-Url 'http://go.microsoft.com/fwlink/?LinkId=287166' `
|
|
-ExpectedSignature 'C3A3D43788E7ABCD287CB4F5B6583043774F99D2'
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "WebPlatformInstaller"
|