CimSystem.InstalledProducts (read-only property)

Gets the list of installed products.
Syntax: Set CimProductList = object.InstalledProducts
Description: The CimSystem.InstalledProducts property is read-only and returns a collection object that is used to view the installed products.

Example

Dim pSystem As CimSystem
Set pSystem = CreateObject("CimSystem")
Dim productsList as CimProductList
Set productsList = pSystem.InstalledProducts
Dim productItem As CimProduct
Set productsList = project.InstalledProducts
For Each productItem In productsList
  MsgBox productItem.Description
Next productItem