2

我正在尝试使用存储在 Win32_OperatingSystem 的属性中的值在 Windows 窗体中填充一些文本框。我正在使用Windows 7。

以下是我正在使用的代码

 ArrayList prName = new ArrayList();
        ArrayList prValue = new ArrayList();
        int i = 0;
        ManagementClass msClassOS = new ManagementClass("Win32_OperatingSystem");
        msClassOS.Options.UseAmendedQualifiers = true;
        PropertyDataCollection properties = msClassOS.Properties;
        foreach (PropertyData property in properties)
        {
            prName.Add(property.Name);
        }

        foreach (PropertyData property in properties)
        {
            prValue.Add(new string[] { msClassOS.GetPropertyValue("Value").ToString() });
         }

以下是我得到的例外 -

System.Management.ManagementException: Not found 
at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
at System.Management.PropertyData.RefreshPropertyInfo()
at System.Management.PropertyDataCollection.get_Item(String propertyName)
at System.Management.ManagementBaseObject.GetPropertyValue(String propertyName)
at NetworkMonitoringSoftware.Form1.tabControl1_Selected(Object sender, TabControlEventArgs e) in C:\Users\OWNER\Documents\Visual Studio 2010\Projects\NetworkMonitoringSoftware\NetworkMonitoringSoftware\Form1.cs:line 

你能告诉我例外是什么以及我如何克服它吗?

提前致谢。

4

2 回答 2

4

你可以试试下面的代码:

using System;
using System.Management;
namespace WMISample
{
    public class MyWMIQuery
    {
        public static void Main()
        {             
            try
            {
                ManagementClass osClass = new ManagementClass("Win32_OperatingSystem");
                foreach (ManagementObject queryObj in osClass.GetInstances())
                {
                    foreach (PropertyData prop in queryObj.Properties)
                    {
                        //add these to your arraylist or dictionary 
                      Console.WriteLine("{0}: {1}", prop.Name, prop.Value);
                    }                    
                }
            }
            catch (ManagementException e)
            {
                //MessageBox.Show("An error occurred while querying for WMI data: " + e.Message);
            }
        }
    }
}
于 2013-03-14T11:36:28.110 回答
2

您不使用属性在 foreach循环中获取。请记住,property.Value可以为空。property.Value是一个可以是字符串或数组的对象。这是我制作的代码摘录,可以帮助您:

mo  //ManagementObject
    .Properties
    .OfType<PropertyData>()
    .ToList()
    .ForEach(p =>
    {
        String str = String.Empty;
        if (p.Value != null)
             if (p.Value.GetType().BaseType == typeof(Array)) // Value is a array, special string creation
             {
                 Array list = (p.Value as Array);
                 foreach (object o in list)
                      str += o.ToString() + "-";
                 if (list.Length > 0)
                      str = str.Substring(0, str.Length - 1);
             }
             else // value is already a string
                 str = p.Value.ToString();

         this.ListDuet
             .Add(new Duet()
             {
                 Key = Convert.ToString(p.Name),
                 Value = str
             });
     });

Duet 是我为轻松管理数据而设计的一个类。

于 2013-03-14T11:09:06.263 回答