WMI dynamic mof file

Joined
Mar 9, 2009
Messages
1
Reaction score
0
How do I change the WMI query back to dynamic? I used this query to change it to static so that I can manipulate the results. Now I want to change it back to dynamic so I get what ever is on the computer.

Thanks


class Win32_Processor
{

[key]

string Name;

uint32 NumberOfCores;

};

instance of Win32_Processor

{

Name = "AMD Athlon(tm) 64 X2 Dual Core Processor 4200+";

NumberOfCores = 222;

};
 
Back
Top