mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-14 22:09:26 +00:00
13 lines
593 B
PowerShell
13 lines
593 B
PowerShell
####################################################################################
|
|
## File: Install-WinAppDriver.ps1
|
|
## Desc: Install Windows Application Driver (WinAppDriver)
|
|
####################################################################################
|
|
|
|
Import-Module -Name ImageHelpers -Force
|
|
|
|
$InstallerName = "WindowsApplicationDriver.msi"
|
|
$InstallerUrl = "https://github.com/Microsoft/WinAppDriver/releases/download/v1.1/${InstallerName}"
|
|
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
|
Install-Binary -Url $InstallerUrl -Name $InstallerName
|