2020-01-31 10:43:55 +03:00
|
|
|
################################################################################
|
|
|
|
|
## File: Validate-Edge.ps1
|
|
|
|
|
## Desc: Validate Microsoft Edge installation.
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
$RegistryKey = "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\msedge.exe"
|
|
|
|
|
if (Test-Path $RegistryKey)
|
|
|
|
|
{
|
2020-06-02 20:07:12 +03:00
|
|
|
(Get-Item (Get-ItemProperty $RegistryKey).'(Default)').VersionInfo
|
2020-01-31 10:43:55 +03:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-06-02 20:07:12 +03:00
|
|
|
Write-Host "Microsoft Edge is not installed."
|
|
|
|
|
exit 1
|
2020-01-31 10:43:55 +03:00
|
|
|
}
|