Skip to content

Instantly share code, notes, and snippets.

@RhysC
Created April 7, 2013 01:41
Show Gist options
  • Save RhysC/5328485 to your computer and use it in GitHub Desktop.
Save RhysC/5328485 to your computer and use it in GitHub Desktop.
Get all installed apps on current machine
#32 bit path - "hklm:\software\microsoft\windows\currentversion\uninstall"
$regInstallPath = "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\"
$installed = gci $regInstallPath |
foreach { gp $_.PSPath } |
select DisplayVersion,InstallDate,ModifyPath,Publisher,UninstallString,Language,DisplayName |
where { ($_.DisplayName -ne $null) -and ($_.DisplayName -ne "") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment