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;
};
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;
};