Mega Code Archive

 
Categories / C# Tutorial / Windows
 

An EnumerationOptions variable with an EnumerationOptions constructor and then gets all the instances of a WMI class and its subcl

using System; using System.Management; public class RemoteConnect  {     public static void Main()      {         EnumerationOptions opt = new EnumerationOptions(             null, System.TimeSpan.MaxValue,             1, true, true, false,              true, false, false, true);         ManagementClass c = new ManagementClass("CIM_Service");         foreach (ManagementObject o in c.GetInstances(opt))             Console.WriteLine(o["Name"]);     } }