PoshCode Archive  Artifact [ca40139ad1]

Artifact ca40139ad19cac3d7531f8b828abf7f1d945f24706122d1d4be00f1af2b84ed8:

  • File Get-App.ps1 — part of check-in [c346895f8e] at 2018-06-10 13:00:42 on branch trunk — Attempt to resolve the path to an executable using Get-Command or the “App Paths” registry key — returns an ApplicationInfo object (user: Joel Bennett size: 2390)

# encoding: ascii
# api: powershell
# title: Get-App
# description: Attempt to resolve the path to an executable using Get-Command or the “App Paths” registry key — returns an ApplicationInfo object
# version: 1.1
# type: script
# author: Joel Bennett
# license: CC0
# function: Get-App
# x-poshcode-id: 174
# x-derived-from-id: 2635
# x-archived: 2017-05-13T16:20:35
# x-published: 2008-04-12T13:08:00
#
# NOTE: you should also use the “which” script (Get-Command 2) http://powershellcentral.com/scripts/173 if you want this to work with normal commands as well as the ones in the registry…
#
## Get-App
## Attempt to resolve the path to an executable using Get-Command and the AppPaths registry key
##################################################################################################
## Example Usage:
##    Get-App Notepad
##       Finds notepad.exe using Get-Command
##    Get-App pbrush
##       Finds mspaint.exe using the "App Paths" registry key
##    &(Get-App WinWord)
##       Finds, and launches, Word (if it's installed) using the "App Paths" registry key
##################################################################################################
## Revision History
## 1.0 - initial release
## 1.1 - strip quotes from results...
##     - NOTE: should be used with the "which" script to return the correct item in the case 
##       where you're calling an app that would show up in the normal Get-Command...
##       http://powershellcentral.com/scripts/173 
##################################################################################################
#function Get-App {
   param( [string]$cmd )

   $command = $null
   $eap = $ErrorActionPreference
   $ErrorActionPreference = "SilentlyContinue"
   $command = Get-Command $cmd | Select -First 1
   $ErrorActionPreference = $eap
  
   if($command -eq $null) {
      $AppPaths = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths"
      if(!(Test-Path $AppPaths\$cmd)) {
         $cmd = [IO.Path]::GetFileNameWithoutExtension($cmd)
         if(!(Test-Path $AppPaths\$cmd)){
            $cmd += ".exe"
         }
      }
      if(Test-Path $AppPaths\$cmd) {
         $default = (Get-ItemProperty $AppPaths\$cmd)."(default)"
         if($default) {
            Get-Command $default.Trim("""'")
         }
      }
   }
#}