24 lines
442 B
Plaintext
24 lines
442 B
Plaintext
// © 2000 Microsoft Corporation. All rights reserved.
|
|
|
|
instance of __Win32Provider as $P
|
|
{
|
|
Name = "MOF Consumer";
|
|
Clsid = "{69BE5883-5F38-4753-89CC-2105B41E1773}";
|
|
};
|
|
|
|
instance of __EventConsumerProviderRegistration
|
|
{
|
|
Provider = $P;
|
|
ConsumerClassNames = {"MSFT_WmiMofConsumer"};
|
|
};
|
|
|
|
class MSFT_WmiMofConsumer : __EventConsumer
|
|
{
|
|
[key]
|
|
string Name;
|
|
|
|
string MofFile;
|
|
boolean SaveAsBlobs = false;
|
|
};
|
|
|