ralphtrent
Programmer
Does anyone have any good info on this object. I tried looking at the MSDN stuff but that was useless. I have the following code set up:
Dim ocom, oComApp
Set oCom = CreateObject("ComAdmin.ComAdminCatalog"
Set oComCat = oCom.GetCollection("Applications"
oComCat.populate
i = 0
For Each comObj In oComCat
With comObj
If Left(.name,6) = "Facets" Then
i = i + 1
'WScript.Echo(.name)
'WScript.Echo(.key)
Set oComCat2 = oComCat.getCollection("Components", comObj.key)
oComCat2.populate
For Each comObj2 In oComCat2
With comObj2
wScript.Echo(.name + " | " +.key + " | " +.dll)
End With
Next
End if
End With
Next
my goal is to get dll information and other stuff. According to MSDN ( I should be able to get this info base on how I am looking for it. But I keep getting "Object doesn't support this property or method: dll " error. the name and key methods work. I am running on Windows 2000 with com 1.0. any help is GREATLY APPRECIATED
Dim ocom, oComApp
Set oCom = CreateObject("ComAdmin.ComAdminCatalog"
Set oComCat = oCom.GetCollection("Applications"
oComCat.populate
i = 0
For Each comObj In oComCat
With comObj
If Left(.name,6) = "Facets" Then
i = i + 1
'WScript.Echo(.name)
'WScript.Echo(.key)
Set oComCat2 = oComCat.getCollection("Components", comObj.key)
oComCat2.populate
For Each comObj2 In oComCat2
With comObj2
wScript.Echo(.name + " | " +.key + " | " +.dll)
End With
Next
End if
End With
Next
my goal is to get dll information and other stuff. According to MSDN ( I should be able to get this info base on how I am looking for it. But I keep getting "Object doesn't support this property or method: dll " error. the name and key methods work. I am running on Windows 2000 with com 1.0. any help is GREATLY APPRECIATED