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.

18 lines
291 B

  1. use OLE;
  2. use Win32;
  3. # Get a favorite class from CIMOM
  4. $locator = CreateObject OLE 'WbemScripting.SWbemLocator';
  5. $service = $locator->ConnectServer (".", "root/cimv2");
  6. $class = $service->Get ('Win32_BaseService');
  7. $d = $class->{Derivation_};
  8. print ("{ @$d }\n");