|
-
Jun 19th, 2000, 08:24 PM
#1
Thread Starter
Addicted Member
so far I was able to get versions of all the exe/ocx/dll in a path, able to get all the ODBC DSN, and their settings, able to get the OS version, free memory, reasources etc, and able to get all the task running.
but now I need to figure out how to get information about the IIS version, determine web properties set, and to determine the state of the web services.
any go, is this informatino in registry, if so where, are there API that'll help me get this information, etc.
-
Jun 22nd, 2000, 03:51 PM
#2
New Member
Use ADSI
You need to use the "IIS Admin Objects" and ADSI. Check out msdn.microsoft.com for details, but to give you a starter it goes something like this :
Set tmpIIS = GetObject("IIS://machinename/w3svc/")
etc. etc.
-
Jun 22nd, 2000, 06:57 PM
#3
Thread Starter
Addicted Member
Hmm I would have never known that, I knew if it was an object, I would least think it would have gone somehting like this
set something = server.createobject("object.classname")
thanks, I'll check it out.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|