Talion83
Talion83

Reputation: 47

VBScript GetObject WINNT properties

I recently created a script for checking running services using the GetObject("WinNT://" & computer) method. It uses a .filter method to only get "Service" items. I have used similar scripts for querying other items from a computer. However, I can't seem to find a list of everything that I should be able to query from a computer using this connection (prior to the filter)

Would someone be able to point me in the correct direction for finding out all of the possible properties I can access when using this type of connection?

Upvotes: 1

Views: 16143

Answers (1)

Helen
Helen

Reputation: 97550

Check out the following section in MSDN:
ADSI Objects of WinNT

It describes the available objects and their methods and properties.

Upvotes: 2

Related Questions