mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-13 21:36:46 +00:00
9 lines
544 B
PowerShell
9 lines
544 B
PowerShell
####################################################################################
|
|
## File: Install-WinAppDriver.ps1
|
|
## Desc: Install Windows Application Driver (WinAppDriver)
|
|
####################################################################################
|
|
|
|
Import-Module -Name ImageHelpers -Force
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
|
Install-MSI -MsiUrl "https://github.com/Microsoft/WinAppDriver/releases/download/v1.1/WindowsApplicationDriver.msi" -MsiName "WindowsApplicationDriver.msi"
|