Created
April 7, 2013 01:41
-
-
Save RhysC/5328485 to your computer and use it in GitHub Desktop.
Get all installed apps on current machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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