Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7765117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:05:33+00:00 2026-06-01T15:05:33+00:00

I am trying to interogate the values of the ICatalogObject object using VBScript. When

  • 0

I am trying to interogate the values of the ICatalogObject object using VBScript. When I look at a COM+ object’s properties in COM Services Explorer, I can see properies such as ‘Name’, ‘Description’, ‘DLL’, etc as depicted below). I am assuming (perhaps incorreclty so) that these are exposed via the Value property collection as named properties. My problem is that I am struggling finding a list of what the actual names of these named properties are. You cannot call Value without specifying a property name — and I am yet to find a concise list of named properties. I have tried to use the names referenced on the captions on the screenshot, but to no avail. Is there a list somewhere of these Named Values, or can I retrieve a collection of Value Names somehow?

I have been able to deterime that the following return values: Deleteable, Description

sample code:

Dim appName
appName = WScript.Arguments.Item(0)
Dim catalog, apps, app
Set catalog = CreateObject("COMAdmin.COMAdminCatalog")
Set apps = catalog.GetCollection("Applications")
apps.Populate
For each app in apps
if app.Name = appName then
    if app.Value("DLL") = "C:\temp\MyDll.dll" then
        'code to do something -- however I don't know what the named property 
        'that contains the DLL file location is called.
    end if 
end if    
Next

Image of some of the properties I want — ie: DLL
enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T15:05:34+00:00Added an answer on June 1, 2026 at 3:05 pm

    I agree — it’s hard to find the documentation. The property you are interested in (DLL) is on the component level and not on the application level. You can find the list of properties for the components here. At the bottom of COMAdminCatalogObject you can find an example for retrieving the components.

    A sample would look something like:

    Dim appName
    appName = WScript.Arguments.Item(0)
    Dim catalog, apps, app
    Set catalog = CreateObject("COMAdmin.COMAdminCatalog")
    Set apps = catalog.GetCollection("Applications")
    apps.Populate
    For each app in apps
    
      if app.Name = appName then
        WScript.Echo "Processing Application " & app.Name
    
        Dim Components
        Set Components = apps.GetCollection("Components", app.Key) 
        Components.Populate
    
        Dim CompObject
        For Each CompObject in Components 
          Wscript.echo "  Component " & CompObject.Name & " is in DLL " & CompObject.Value("DLL")
        Next 
      end if    
    Next
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to understand downscaling. I can see how interpolation algorithms such as bicubic
I am trying to use plyr and approx to interpolate values for y for
Trying to get my css / C# functions to look like this: body {
Trying to make a make generic select control that I can dynamically add elements
I have two tables, one for values one for location and am trying to
I'm busy trying to process the following RSS feed: Yahoo Search RSS , using
I’m trying to write a python script that sends a query to TweetSentiments.com API.
I'm trying to interrogate a string value using JQuery.tmpl() from within an {{if}} block
I'm trying to output the following each time a function is run: <object id=video
Trying to create an SSIS package to process a Datacube. Using SMS 2008, I've

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.