Gets the identifier for the Product. | |
Syntax: | String = object.ProductID |
Description: | The ProductID property gets the identifier
of the product. Example: Dim pSystem As CimSystem Set pSystem = CreateObject("CimSystem") Dim productsList as CimProductList Set productsList = pSystem.InstalledProducts Dim productItem As CimProduct For Each productItem In productsList MsgBox productItem.ProductID Next productItem |