mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
16 lines
499 B
PowerShell
16 lines
499 B
PowerShell
################################################################################
|
|
## File: Validate-Edge.ps1
|
|
## Desc: Validate Microsoft Edge installation.
|
|
################################################################################
|
|
|
|
$RegistryKey = "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\msedge.exe"
|
|
if (Test-Path $RegistryKey)
|
|
{
|
|
(Get-Item (Get-ItemProperty $RegistryKey).'(Default)').VersionInfo
|
|
}
|
|
else
|
|
{
|
|
Write-Host "Microsoft Edge is not installed."
|
|
exit 1
|
|
}
|