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.
34 lines
599 B
34 lines
599 B
|
|
instance of MSFT_ForwardingConsumer as $C
|
|
{
|
|
Name = "TestConsumer";
|
|
Targets = { "pkenny2" };
|
|
ForwardingQos = 1;
|
|
Authenticate = FALSE;
|
|
};
|
|
|
|
class FwdTestClass
|
|
{
|
|
[key] string Name;
|
|
boolean Prop;
|
|
};
|
|
|
|
instance of FwdTestClass
|
|
{
|
|
Name = "foo";
|
|
Prop = TRUE;
|
|
};
|
|
|
|
instance of __EventFilter as $F
|
|
{
|
|
Name = "TestFilter";
|
|
Query = "select * from __InstanceModificationEvent "
|
|
"where TargetInstance ISA 'FwdTestClass'";
|
|
QueryLanguage = "WQL";
|
|
};
|
|
|
|
instance of __FilterToConsumerBinding
|
|
{
|
|
Consumer = $C;
|
|
Filter = $F;
|
|
};
|