Click here to Skip to main content
15,884,237 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
while reading the win32 files like win32_diskdrives getting that error please solve the issue i am using c#
Posted
Comments
Ian A Davidson 18-Apr-13 7:56am    
You need to supply more information and preferably a code sample indicating where the exception is being thrown.
Regards,
Ian.
srikanth pachava 18-Apr-13 8:01am    
dear lan,

ObjectQuery oq_proc = new System.Management.ObjectQuery("SELECT Name,ProcessorId ,SystemName FROM Win32_Processor");
ManagementObjectSearcher searcher_proc = new ManagementObjectSearcher(mnp, oq_proc);
foreach (ManagementObject o in searcher_proc.Get())
{
// sb_cpu.AppendFormat("{0}<p/>", o.ToString());


foreach (PropertyData prop2 in o.Properties)
{

if (prop2.Name == "Name")
procnam = (String)prop2.Value;
if (prop2.Name == "ProcessorId")
procid = (String)prop2.Value;
if (prop2.Name == "SystemName")
hstnams = (String)prop2.Value.ToString();

}



}
srikanth pachava 18-Apr-13 8:02am    
before these i am using mp.connect there i am getting the exception

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900