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