Dumps a list of active objects | |
Syntax: | object.DumpObjects outputFile |
Parameters: |
outputFile
As String - The file name to
dump the object to.
|
Description: | CimSystem.DumpObjects is a diagnostic
method, that will dump the types of all active objects currently
allocated. This method can be used to determine what objects the
server still has allocated. Example Dim systems as CimSystem Set systems = CreateObject("CimSystem") systems.DumpObjects "C:\out.log" |