Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
Track Installed Programs with PowerShell "get-itemproperty" on Windows 8
How to track and maintain installed programs with registry keys using PowerShell "get-itemproperty" on Windows 8? I know how to use PowerShell cmdlets.
✍: FYIcenter.com
If you want to get a list of all installed applications on your Windows 8
based on registry keys with PowerShell cmdlets,
you can use the "get-childitem" cmdlet as described in this tutorial:
1. Start a PowerShell window
2. Run the following command to dump the "Uninstall" registry entries:
PS C:\fyicenter> get-itemproperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\* > Installed-Programs_Keys.txt
3. Open Installed-Programs_Keys.txt in Notepad. You see a list of installed programs recorded in the file, as shown in the example below:
HideDisplayName : McAfee Security Scan Plus DisplayIcon : "C:\Program Files\McAfee Security Scan\uninstall.exe" UninstallString : "C:\Program Files\McAfee Security Scan\uninstall.exe" VersionMajor : 3 VersionMinor : 11 VersionBuild : 599 Version : 3.11.599.11 ExePath : C:\Program Files\McAfee Security Scan\3.11.599\McUICnt.exe ExeParams : SecurityScanner.dll InstallVersionDirectory : C:\Program Files\McAfee Security Scan\3.11.599\ InstallDirectory : C:\Program Files\McAfee Security Scan Publisher : McAfee, Inc. EstimatedSize : 10500 Rank : 10 DisplayVersion : 3.11.599.11 Affid : 0 DisplayName : McAfee Security Scan Plus PSPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHIN E\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall \McAfee Security Scan PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHIN E\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall PSChildName : McAfee Security Scan PSDrive : HKLM PSProvider : Microsoft.PowerShell.Core\Registry ...
4. Run the command for other "Uninstall" registry locations:
PS C:\fyicenter> get-itemproperty HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* >> Installed-Programs_Keys.txt PS C:\fyicenter> get-itemproperty HKU\{user1}\Software\Microsoft\Windows\CurrentVersion\Uninstall\* >> Installed-Programs_Keys.txt PS C:\fyicenter> get-itemproperty HKU\{user2}\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* >> Installed-Programs_Keys.txt
Â
⇒ Track Installed Programs with PowerShell "get-wmiobject" on Windows 8
⇠Hidden Installed Programs in Control Panel on Windows 8
⇑ Uninstall Old or Bad Programs and Software on Windows 8
⇑⇑ Windows 8 Installed Programs
2020-12-22, 3682👍, 0💬
Popular Posts:
What happens if you entered the wrong Passkey on your cell phone? If the Passkey you entered on your...
How to verify IIS configuration for PHP scripts? If you have followed our Configuring IIS for PHP Sc...
What is Java Runtime Environment 1.4.2 - Download Program Files (DPF)? Java Runtime Environment 1.4....
Where to find tutorials on managing Windows 8 startup programs? Here is a collection of tutorials on...
What is the installed program "Windows SDK Signing Tools" on my Windows 7 computer? Why it is not vi...