mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
15 lines
536 B
PowerShell
15 lines
536 B
PowerShell
################################################################################
|
|
## File: Validate-Firefox.ps1
|
|
## Desc: Validate Mozilla Firefox installation.
|
|
################################################################################
|
|
|
|
if (Test-Path 'HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\firefox.exe')
|
|
{
|
|
(Get-Item (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\firefox.exe').'(Default)').VersionInfo
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'Mozilla Firefox is not installed.'
|
|
exit 1
|
|
}
|