Files
admin
activec
admt
burnslib
cmdline
consoles
controls
cys
darwin
dcpromo
display
dsadminlib
dsclientnt4
dscmd
dsutils
dsweb
eelvewer
extens
hmonitor
netid
netui
pchealth
published
select
services
sms
snapin
wizards
wmi
wbem
adapters
bvt
common
consumers
copyright
cppunit
embedded
policman
providers
scripting
sdk
setup
shell
test
tools
valuadd
winmgmt
a51
a512rosw
adap
baseprov
comlib
contprov
coredll
coretest
dbgsignal
egg
ess3
esscli
esscomp
correlation
decoupled
eel
esstest
bin2mof
esst
eventdmp
js2mof
mofcons
mofprov
utils
clean.bat
dirs
esstest.mof
index.mof
indexd.mof
notepad.mof
regmofs.bat
rsinks.mof
sd.mof
setup.bat
spawnandkill.js
testobj.mof
forwarding
krnlprov
misc
mof
noncom
sample
stdcons
timeprov
vsa
dirs
eventconsshell
eventprovshell
heaptrak
hiperstress
kernel33
marshalers
mc
minimfc
mofcomp_dll
mofcomp_tool
mofcompiler
mofs
msg
ntperf
ntperfclient
ntperfshell
ntsdext
provshell
provsubsys
queries
redirect
repdrvr
roswell
secobj
security
specs
stdprov
wbemcomn
wbemtest
winmgmt2
wmicooker
wmiexts
wmiperf
wmitest
wql
wqlscan
xfiles
dirs
filelist.xls
makefile.inc
makefile.sms
xmltransport
coverage_cleanbuild.bat
coverage_postbuild.bat
dirs
icecap_cleanbuild.bat
dirs
wmiprov
wmiscmgr
dirs
makefile.inc
project.mk
base
com
developer
drivers
ds
enduser
inetcore
inetsrv
loc
mergedcomponents
multimedia
net
printscan
public
published
sdktools
shell
termsrv
tools
windows
dirs
makefil0
2025-04-27 07:49:33 -04:00

67 lines
1.2 KiB
Plaintext

// EssTest.mof
#pragma namespace("\\\\.\\root\\cimv2")
class MSFT_EssEventGenerator
{
[key]
string Name;
string CommandLine;
string Script;
boolean Enabled;
boolean FullCompare = true;
string EventNamespace;
};
class MSFT_EssTestWorkItem
{
[key]
string Name;
MSFT_EssEventGenerator ref EventGenerator;
boolean Enabled;
uint32 NumEvents;
uint32 TimesToExecute;
uint32 MaxPermConsumers;
uint32 MaxTempConsumers;
boolean SlowDownProviders;
};
class MSFT_EssTestFilter
{
[key]
string Name;
MSFT_EssEventGenerator ref EventGenerator;
string Query;
string ScriptRule;
string Condition;
string ConditionNamespace;
[
Values{ "Disabled", "Full-time", "On at/Off at", "Random on/off" }
]
uint32 Behavior;
// Only valid with Behavior == "On at/Off at".
uint32 OnAt;
// Only valid with Behavior == "On at/Off at". Can be null if it
// should stay on once activated.
uint32 OffAt;
};
[association]
class MSFT_EssTestEventFilterToTestFilter
{
[key]
__EventFilter ref EventFilter;
[key]
MSFT_EssTestFilter ref TestFilter;
};