mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-13 13:26:48 +00:00
46 lines
1.3 KiB
PowerShell
46 lines
1.3 KiB
PowerShell
################################################################################
|
|
## File: Validate-WinAppDriver.ps1
|
|
## Desc: Validate WinAppDriver installation
|
|
################################################################################
|
|
|
|
$wad = "Windows Application Driver";
|
|
if (${Env:ProgramFiles(x86)})
|
|
{
|
|
$wadPath = "${Env:ProgramFiles(x86)}\$wad"
|
|
}
|
|
else
|
|
{
|
|
$wadPath = "${Env:ProgramFiles}\$wad"
|
|
}
|
|
|
|
if(Test-Path $wadPath -PathType Any)
|
|
{
|
|
Write-Host "WinAppDriver directory found."
|
|
}
|
|
else
|
|
{
|
|
Write-Host "Failed to locate WinAppDriver directory. Exiting."
|
|
exit 1
|
|
}
|
|
|
|
#Validate if Developer Mode is enabled
|
|
$path = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock";
|
|
if((Get-ItemProperty -Path $path | Select-Object -ExpandProperty "AllowDevelopmentWithoutDevLicense") -eq 1)
|
|
{
|
|
Write-Host "Developer Mode is successfully provisioned."
|
|
}
|
|
else
|
|
{
|
|
Write-Host "Developer Mode was not successfully provisioned."
|
|
exit 1
|
|
}
|
|
|
|
# Adding description of the software to Markdown
|
|
$SoftwareName = "WinAppDriver"
|
|
$version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo("C:\Program Files (x86)\Windows Application Driver\WinAppDriver.exe").FileVersion
|
|
$Description = @"
|
|
_Version:_ $version<br/>
|
|
"@
|
|
|
|
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|