34 lines
599 B
Plaintext
34 lines
599 B
Plaintext
|
|
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;
|
|
}; |