System.Management.ManagementScope ms = new System.Management.ManagementScope("\\\\" + stringMachineName + "\\root\\cimv2", co);
oq = new System.Management.ObjectQuery("SELECT * FROM Win32_processor");
query = new ManagementObjectSearcher(ms, oq);
queryCollection = query.Get();
return queryCollection;
well guys i am trying to access remote system but in doing this some machines give mein following exception
System.interop.Runtime.COmException
RPC SERVER IS unavailable (Exception from Hresult:0x800706BA)
can u help me this how to solve this
JK