-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathget_chrome_version.ps1
46 lines (38 loc) · 1.14 KB
/
get_chrome_version.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Write-Host -ForegroundColor 'green' @"
This call shows Chrome Version
"@
if (-not [environment]::Is64BitProcess) {
$path = '/SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/Google Chrome'
} else {
$path = '/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion/Uninstall/Google Chrome'
}
$hive = 'HKLM:'
[string]$name = $null
pushd $hive
cd $path
$fields = @( 'DisplayName','Version','UninstallString')
$fields | ForEach-Object {
$name = $_
# write-output $name
$result = Get-ItemProperty -Name $name -Path ('{0}/{1}' -f $hive,$path)
# $result
# $result.ToString()
[string]$DisplayName = $null
[string]$Version = $null
try {
$Version = $result.Version
$DisplayName = $result.DisplayName
$UninstallString = $result.UninstallString
} catch [exception]{
}
if (($DisplayName -ne $null) -and ($DisplayName -ne '')) {
Write-Output ('DisplayName : {0}' -f $DisplayName)
}
if (($Version -ne $null) -and ($Version -ne '')) {
Write-Output ('Version : {0}' -f $Version)
}
if (($UninstallString -ne $null) -and ($UninstallString -ne '')) {
Write-Output ('UninstallString : {0}' -f $UninstallString)
}
}
popd