Full Properties of Installed Programs with "Get-WmiObject" on Windows 8

Q

How to get the full list of all properties of an installed program with PowerShell "Get-WmiObject" cmdlet on Windows 8?

✍: FYIcenter.com

A

If you want to get the full list of all properties of an installed program on Windows 8, you can use the "Get-WmiObject" cmdlet as described in this tutorial:

1. Start a PowerShell window

2. Run the following command to get the full list of all properties of installed program "Windows Live Photo Common":

PS C:\fyicenter> get-wmiobject -class win32_product 
  -filter "name='Windows Live Photo Common'" | select-object -property *

PSComputerName    : FYICENTER
Name              : Windows Live Photo Common
Version           : 16.4.3503.0728
InstallState      : 5
__GENUS           : 2
__CLASS           : Win32_Product
__SUPERCLASS      : CIM_Product
__DYNASTY         : CIM_Product
__RELPATH         : Win32_Product.IdentifyingNumber="{64DF7404-9D46-44AF-AFA1-A
                    2F8D5648C2D}",Name="Windows Live Photo
                    Common",Version="16.4.3503.0728"
__PROPERTY_COUNT  : 27
__DERIVATION      : {CIM_Product}
__SERVER          : FYICENTER
__NAMESPACE       : root\cimv2
__PATH            : \\FYICENTER\root\cimv2:Win32_Product.IdentifyingNumber="{64
                    DF7404-9D46-44AF-AFA1-A2F8D5648C2D}",Name="Windows Live
                    Photo Common",Version="16.4.3503.0728"
AssignmentType    : 1
Caption           : Windows Live Photo Common
Description       : Windows Live Photo Common
HelpLink          :
HelpTelephone     :
IdentifyingNumber : {64DF7404-9D46-44AF-AFA1-A2F8D5648C2D}
InstallDate       : 20121127
InstallDate2      :
InstallLocation   :
InstallSource     : C:\Program Files (x86)\Common Files\Windows
                    Live\.cache\9cd734d51cdcc7e0f\
Language          : 0
LocalPackage      : C:\Windows\Installer\4f464.msi
PackageCache      : C:\Windows\Installer\4f464.msi
PackageCode       : {A7FC5130-CC80-4B4C-A086-C0AC384070BF}
PackageName       : PhotoCommon.msi
ProductID         :
RegCompany        :
RegOwner          :
SKUNumber         :
Transforms        :
URLInfoAbout      :
URLUpdateInfo     :
Vendor            : Microsoft Corporation
WordCount         : 2
Scope             : System.Management.ManagementScope
Path              : \\FYICENTER\root\cimv2:Win32_Product.IdentifyingNumber="{64
                    DF7404-9D46-44AF-AFA1-A2F8D5648C2D}",Name="Windows Live
                    Photo Common",Version="16.4.3503.0728"
Options           : System.Management.ObjectGetOptions
ClassPath         : \\FYICENTER\root\cimv2:Win32_Product
Properties        : {AssignmentType, Caption, Description, HelpLink...}
SystemProperties  : {__GENUS, __CLASS, __SUPERCLASS, __DYNASTY...}
Qualifiers        : {dynamic, Locale, provider, UUID}
Site              :
Container         :

 

Missing Programs in "Get-WmiObject" Output on Windows 8

Track Installed Programs with PowerShell "get-wmiobject" on Windows 8

Uninstall Old or Bad Programs and Software on Windows 8

⇑⇑ Windows 8 Installed Programs

2020-12-22, 1873🔥, 0💬