public class Property
{
public string Name{ get; set; }
public string Value{ get; set; }
}
List<Property> info = GetSystemInfo("Win32_ComputerSystem", "*", "", "System");
info = GetSystemInfo("win32_Product", "*", "", "Product");
I am using the above code to fetch the List of installed products . But Its taking quite a long. Actually I didn't see it complete the operation:( could anyone please suggest a quick way of fetching the installed product list ?