现在的位置: 首页 > 综合 > 正文

在程序中提取客户机端的MAC地址

2012年11月01日 ⁄ 综合 ⁄ 共 705字 ⁄ 字号 评论关闭
public string GetCustomerMac(string clientIP)
        {
            string Mac = "";
            System.Diagnostics.Process process = new System.Diagnostics.Process();
            process.StartInfo.FileName = "nbtstat";
            process.StartInfo.Arguments = "-a " + clientIP;
            process.StartInfo.UseShellExecute = false;
            process.StartInfo.CreateNoWindow = true;
            process.StartInfo.RedirectStandardOutput = true;
            process.Start();
            string output = process.StandardOutput.ReadToEnd();
            int length = output.IndexOf("MAC Address = ");
            if (length > 0)
            {
                Mac = output.Substring(length + 14, 17);
            }
            process.WaitForExit();
            return Mac;
        }

抱歉!评论已关闭.