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.

33 lines
599 B

  1. instance of MSFT_ForwardingConsumer as $C
  2. {
  3. Name = "TestConsumer";
  4. Targets = { "pkenny2" };
  5. ForwardingQos = 1;
  6. Authenticate = FALSE;
  7. };
  8. class FwdTestClass
  9. {
  10. [key] string Name;
  11. boolean Prop;
  12. };
  13. instance of FwdTestClass
  14. {
  15. Name = "foo";
  16. Prop = TRUE;
  17. };
  18. instance of __EventFilter as $F
  19. {
  20. Name = "TestFilter";
  21. Query = "select * from __InstanceModificationEvent "
  22. "where TargetInstance ISA 'FwdTestClass'";
  23. QueryLanguage = "WQL";
  24. };
  25. instance of __FilterToConsumerBinding
  26. {
  27. Consumer = $C;
  28. Filter = $F;
  29. };