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.

10 lines
417 B

  1. # The following sample registers to be informed whenever an instance
  2. # of the class MyClass is created
  3. use Win32::OLE;
  4. $objServices = Win32::OLE->GetObject('cim:root/default');
  5. $objEnum = $objServices->ExecNotificationQuery ("select * from __instancecreationevent where targetinstance isa 'MyClass'");
  6. $enum = Win32::OLE::Enum->new ($objEnum);
  7. while ($event = $enum->Next()) {
  8. print "Got an event\n";
  9. }