7 lines
181 B
Plaintext
7 lines
181 B
Plaintext
|
|
Set theNamespace = GetObject("winmgmts:root\cimv2")
|
|
Set objEnumerator = theNamespace.InstancesOf("DCMonitor")
|
|
For Each objInstance In objEnumerator
|
|
objInstance.Delete_
|
|
Next
|