Skip to content

Instantly share code, notes, and snippets.

@jessewolcott
Created July 26, 2023 17:51
Show Gist options
  • Save jessewolcott/d5dff8d6f4ad08eca5c2e72837596822 to your computer and use it in GitHub Desktop.
Save jessewolcott/d5dff8d6f4ad08eca5c2e72837596822 to your computer and use it in GitHub Desktop.
$Version = [System.Version](Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{066E438B-355E-4A79-B1C2-2D1C71CF000C}" -ErrorAction SilentlyContinue).displayVersion
If ($null -ne $Version){
$ProgramVersion_target = [System.Version]'8.0.0.65'
if($Version -ge $ProgramVersion_target){
Write-Host "Found it!"
}
}
@jessewolcott
Copy link
Author

public

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment