来自win32_NetworkAdapterConfiguration的奇怪结果

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Management;
using System.Management.Instrumentation;

namespace WindowsFormsApplication3
{
    public partial class Form1 : Form
    {


        public Form1()
        {

            {
                InitializeComponent();
            }

            // win32 class
            //http://msdn.microsoft.com/en-us/library/aa394216(v=vs.85).aspx

            ManagementObjectSearcher query = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = 'TRUE'");
            ManagementObjectCollection queryCollection = query.Get();

            //foreach (ManagementObject mo in queryCollection)
            //{


            //    string[] addresses = (string[])mo["IPAddress"];
            //    string[] gateways = (string[])mo["DefaultIPGateway"];
            //    string[] Subnets = (string[])mo["IPSubnet"];


            //    foreach (string ipaddress in addresses)
            //    {

            //        listBox1.Items.Add(ipaddress);

            //    }
            //    foreach (string gateway in gateways)
            //    {

            //        TxtGateway.Text = (gateway);
            //    }
            //    foreach (string subnet in Subnets)
            //    {

            //        TxtSubnet.Text = (subnet);
            //    }

            //}


            try
            {
                query = new ManagementObjectSearcher(@"SELECT * FROM Win32_NetworkAdapter WHERE  Manufacturer != 'Microsoft' AND NOT PNPDeviceID LIKE 'ROOT\%'");

                queryCollection = query.Get();

                foreach (ManagementObject mo in queryCollection)
                {



                    if (mo["MacAddress"] != null)
                    {

                        comboBox1.Items.Add(mo["Description"].ToString());


                    }

                    richTextBox1.AppendText("n");
                }
            }


            catch (Exception ex)
            {

            }
        }

        string[] availabilityArray = new string[] {"", "Other", "Unknown", "Running or Full Power", "Warning", "In Test", "Not Applicable", "Power Off", "Off Line", "Off Duty", "Degraded", "Not Installed", "Install Error", "Power Save - Unknown" + "n" +"The device is known to be in a power save state, but its exact status is unknown.", "Power Save - Low Power Mode" + "/n" +"The device is in a power save state, but still functioning, and may exhibit degraded performance.", "Power Save - Standby" + "/n" +"The device is not functioning, but could be brought to full power quickly.", "Power Cycle", "Power Save - Warning" + "/n" + "The device is in a warning state, though also in a power save state.",};
        string[] errorArray = new string[] { "Device is working properly.", "Device is not configured correctly.", "Windows cannot load the driver for this device.", "Driver for this device might be corrupted, or the system may be low on memory or other resources.", "Device is not working properly. One of its drivers or the registry might be corrupted.", "Driver for the device requires a resource that Windows cannot manage.", "Boot configuration for the device conflicts with other devices.", "Cannot filter.", "Driver loader for the device is missing.", "Device is not working properly. The controlling firmware is incorrectly reporting the resources for the device.", "Device cannot start.", "Device failed.", "Device cannot find enough free resources to use.", "Windows cannot verify the device's resources.", "Device cannot work properly until the computer is restarted.", "Device is not working properly due to a possible re-enumeration problem.", "Windows cannot identify all of the resources that the device uses.", "Device is requesting an unknown resource type.", "Device drivers must be reinstalled.", "Failure using the VxD loader.", "Registry might be corrupted.", "System failure. If changing the device driver is ineffective, see the hardware documentation. Windows is removing the device.", "Device is disabled.", "System failure. If changing the device driver is ineffective, see the hardware documentation.", "Device is not present, not working properly, or does not have all of its drivers installed.", "Windows is still setting up the device.", "Windows is still setting up the device.", "Device does not have valid log configuration.", "Device drivers are not installed", "Device is disabled. The device firmware did not provide the required resources.", "Device is using an IRQ resource that another device is using.", "Device is not working properly. Windows cannot load the required device drivers.", };

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            try
            {
                ManagementObjectSearcher intquery;

               intquery = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapter WHERE Description ='" + comboBox1.Items[comboBox1.SelectedIndex].ToString() + "'");
               ManagementObjectCollection queryCollection = intquery.Get();
                queryCollection = intquery.Get();

                //////////////////////////////////

                foreach (ManagementObject mo in queryCollection)
                {
                    string Dev = (mo["DeviceID"].ToString());

                    richTextBox1.Text = (Dev).ToString();
                    txtMacAdd.Text = (" " + mo["MacAddress"].ToString());
                    TxtAdapter.Text = (" " + mo["AdapterType"].ToString());
                    txtAvailability.Text = (" " + mo["Availability"].ToString());
                    txtCaption.Text = (" " + mo["Caption"].ToString());


                    txtDeviceID.Text = ("DeviceID = " + mo["DeviceID"].ToString());
                    txtErrorCode.Text = (mo["ConfigManagerErrorCode"].ToString());

                    ManagementObjectSearcher intquery1;
                    intquery1 = new ManagementObjectSearcher("ASSOCIATORS OF {Win32_NetworkAdapter.DeviceID='"+Dev+"'}WHERE ResultClass=Win32_NetworkAdapterConfiguration");
                   //intquery1 = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapterConfiguration  WHERE IPEnabled = 'TRUE' ");
                    ManagementObjectCollection queryCollection1 = intquery1.Get();
                    queryCollection1 = intquery1.Get();

                    foreach (ManagementObject mo1 in queryCollection1)
                    {
                        string[] addresses = (string[])mo1["IPAddress"];
                        string[] gateways = (string[])mo1["DefaultIPGateway"];
                        string[] Subnets = (string[])mo1["IPSubnet"];

                        foreach (string ipaddress in addresses)
                        {

                            listBox1.Items.Add(ipaddress);

                        }
                        foreach (string gateway in gateways)
                        {

                            TxtGateway.Text = (gateway);
                        }
                        foreach (string subnet in Subnets)
                        {

                            richTextBox1.Text = (subnet);
                        }
                    }
                }
                }




            catch (Exception ex2)
            { 


            }
    }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {


            try
            {
                ManagementObjectSearcher intquery;
                intquery = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapter WHERE Description ='" + comboBox1.Items[comboBox1.SelectedIndex].ToString() + "'");
                ManagementObjectCollection queryCollection = intquery.Get();
                queryCollection = intquery.Get();

                foreach (ManagementObject mo in queryCollection)
                {
                    richTextBox1.Text = ("");
                    string thisstring = (mo["ConfigManagerErrorCode"].ToString());
                    int error;
                    int.TryParse(thisstring, out error);
                    MessageBox.Show(errorArray[error]);


                }
            }
            catch (Exception ex1) 
            {
                MessageBox.Show("PLease Select a Device");
            }

        }

        private void BtnAvailability_Click(object sender, EventArgs e)
        {
            try
            {
                ManagementObjectSearcher intquery;
                intquery = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapter WHERE Description ='" + comboBox1.Items[comboBox1.SelectedIndex].ToString() + "'");
                ManagementObjectCollection queryCollection = intquery.Get();
                queryCollection = intquery.Get();

                foreach (ManagementObject mo in queryCollection)
                {
                    richTextBox1.Text = ("");
                    string thisstring = (mo["Availability"].ToString());
                    int Avail;
                    int.TryParse(thisstring, out Avail);
                    MessageBox.Show(availabilityArray[Avail]);


                }
            }
            catch (Exception ex2)
            {
                MessageBox.Show("PLease Select a Device");
            }
        }
        }
}
由于某种原因,前面的代码给我一个64的子网掩码读取。这只发生在我的家庭网络(这是无线),并在大学很好。 如果它给出了任何线索,我的IP地址在64结束,所以可能有一些混乱?!?!     
已邀请:
好。更正代码:
ManagementObjectSearcher intquery1 = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapterConfiguration  WHERE Description ='" + comboBox1.Items[comboBox1.SelectedIndex].ToString() + "'");
ManagementObjectCollection queryCollection1 = intquery1.Get();
queryCollection1 = intquery1.Get();

foreach (ManagementObject mo1 in queryCollection1)
{
   string[] addresses = (string[])mo1["IPAddress"];
   string[] gateways = (string[])mo1["DefaultIPGateway"];
   string[] subnets = (string[])mo1["IPSubnet"];

   if (addresses != null)
   {
       listBox1.Items.Clear();
       foreach (string ip in addresses)
       {
           listBox1.Items.Add(ip);
       }
   }
   if (gateways != null)
   {
       foreach (string gateway in gateways)
       {
          TxtGateway.Text = (gateway);
       }
   }
   if (subnets != null)
   {
       foreach (string subnet in subnets)
       {
           richTextBox1.Text = (subnet);
       }
   }
}
在尝试从中读取信息之前,您需要检查现有数组。例如,如果你的网络接口没有网关(配置中的空行),那么你的程序将在第二个“foreach”停止运行。不知道为什么没有异常发生。更正的代码适用于我的配置。此外,我删除了在此功能开头填写带有DeviceID编号的richbox,并在添加新项目之前添加了清除列表框。 我建议你试试WMI Explorer(http://www.ks-soft.net/hostmon.eng/wmi/index.htm)。您将能够看到网络设置的差异。希望它会有所帮助。     

要回复问题请先登录注册