Collections:
Other Resources:
Missing Programs in "Get-WmiObject" Output on Windows 8
Why there are some installed programs missing in "get-wmiobject -class win32_product" output on Windows 8?
✍: FYIcenter.com
If you compare entries from the "get-wmiobject -class win32_product" output with
"Uninstall" registry entries, you will many installed programs are missing in "get-wmiobject" output.
This is because Win32_Product WMI class represents programs that are installed by Windows Installer.
Windows 8 uses the "WindowsInstaller" registry key to flag if a program is installed by Windows Installer.
For example, if you look at the installed program "Adobe Acrobat Reader DC MUI" in the registry at HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{AC76BA86-7AD7-FFFF-7B44-AC0F074E4100}, you will see registry key "WindowsInstaller" is set to "1", indicating this program was installed by Windows Installer. So "Adobe Acrobat Reader DC MUI" entry will be in the output of "get-wmiobject -class win32_product".
If you look at the installed program "McAfee LiveSafe" in the registry at HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\MSC, you will see no registry key "WindowsInstaller", indicating this program was installed by the "McAfee LiveSafe" itself. So "McAfee LiveSafe" entry will not be in the output of "get-wmiobject -class win32_product".
⇒ Visible Installed Programs using Windows Installer on Windows 8
⇐ Full Properties of Installed Programs with "Get-WmiObject" on Windows 8
2020-12-01, ∼3588🔥, 0💬
Popular Posts:
How can I get detailed system information from my Windows Server 2012? A quick way to get detailed i...
What is "Protexis Licensing V2" in my Windows 7 service list? And how is "Protexis Licensing V2" ser...
What is "Windows Biometric Service" in my Windows XP service list? And how is "Windows Biometric Ser...
Can I remove startup application "DSentry.exe - Dell DVDSentry" to speedup my computer and reduce se...
What is a DSL modem? A DSL modem is a device that is used to interface your computer and the DSL lin...