CimProduct.Type (read-only property)

Gets the product Type.
Syntax: CimProductTypeEnum = object.Type
Description: The Type property gets the product type.



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.Type
Next productItem