the following code doesnot shows the version information correctly.
ManagementObjectSearcher mos = new ManagementObjectSearcher(new SelectQuery("Win32_Processor"));
ManagementObjectCollection moc = mos.Get();
foreach (ManagementObject mo in moc)
{
Console.WriteLine("Version: " +mo["Version"].ToString());
}
it displays blank screen.
am using windows 7 version…
how to resolve it……?
May this can help you:
MSDN EnumerationOptions Class