Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
756 B

  1. '***************************************************************************
  2. 'This script tests the enumeration of subclasses using XML/HTTP
  3. '***************************************************************************
  4. On Error Resume Next
  5. Dim objLocator
  6. Set objLocator = CreateObject("WbemScripting.SWbemLocator")
  7. ' Replace the first argument to this function with the URL of your WMI XML/HTTP server
  8. ' For the local machine, use the URL as below
  9. Dim objService
  10. Set objService = objLocator.ConnectServer("[http://localhost/cimom]", "root\cimv2")
  11. for each subclass in objService.SubclassesOf ("cim_UserDevice")
  12. WScript.Echo "Subclass name:", subclass.Path_.Class
  13. next
  14. if Err <> 0 Then
  15. WScript.Echo Err.Description
  16. Err.Clear
  17. End if