Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

list of objects

Status
Not open for further replies.

dfrankel

Programmer
Apr 23, 2002
19
US
Where can I find a list of all available objects or most of them in vbScript. I had to do a lot of searching on the net before I found something useful for sending mail CDNOTS. Another one is Set oRegistry = GetObject("winmgmts:{impersonationLevel=impersonate}//" & _
sComputer & "/root/default:StdRegProv")
which gets an objetc to write to the windows registry. Where are these things located?
 
hithere,
I'm familiar with the reference sites, but these sites don't say anything about objects like CDNOTS and the like.
dfrankel
 
The question is better stated like this:
the CreateObject method, where can I get a list of objects that can be created using this.
dfrankel
 
Well there can't be any such list.

It's a question of what components are installed on a given machine, and what new ones Microsoft has added as you update Windows, along with what old ones have been taken away.

The most comprehensive single source for the current scriptable Microsoft components is probably the MSDN Library. If you don't have the MSDN CDs this is available online at:


The next best thing is a large subset of the MSDN Library, the Windows Platform Software Development Kit ("Platform SDK"). You can web-install this (though you can't simply download a setup package anymore) from:


If you can't find stuff like MSXML and CDONTS components here I don't know where you'd look! Caution: This is a professional developer's reference, not a series of tutorials.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top