Sha256: 39d4472e16a6858cea6d0b00e1d0899ccf49f0cc2b73f16d8ffa6c182e778b1a

Contents?: true

Size: 772 Bytes

Versions: 24

Compression:

Stored size: 772 Bytes

Contents

function FindInstalledApplication
{
  param($appName, $appVersion)
    
  if ((Get-WmiObject win32_operatingsystem).OSArchitecture -notlike '64-bit')  
  { 
      $keys= (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*') 
  }  
    else  
  { 
      $keys = (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*','HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*') 
  }   

  if ($appVersion -eq $null) { 
    @($keys | Where-Object {$_.DisplayName -like $appName -or $_.PSChildName -like $appName}).Length -gt 0
  }
  else{
    @($keys | Where-Object {$_.DisplayName -like $appName -or $_.PSChildName -like $appName  } | Where-Object {$_.DisplayVersion -eq $appVersion} ).Length -gt 0
  }

}

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
specinfra-0.5.5 lib/specinfra/backend/powershell/support/find_installed_application.ps1
specinfra-0.5.4 lib/specinfra/backend/powershell/support/find_installed_application.ps1
specinfra-0.5.3 lib/specinfra/backend/powershell/support/find_installed_application.ps1
specinfra-0.5.2 lib/specinfra/backend/powershell/support/find_installed_application.ps1