| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ET
- {
- public static class MacAccess
- {
- /// <summary>
- /// 根据截取ipconfig /all命令的输出流获取网卡Mac
- /// </summary>
- /// <returns></returns>
- public static List<string> GetMacByIPConfig()
- {
- List<string> macs = new List<string>();
- ProcessStartInfo startInfo = new ProcessStartInfo("ipconfig", "/all");
- startInfo.UseShellExecute = false;
- startInfo.RedirectStandardInput = true;
- startInfo.RedirectStandardOutput = true;
- startInfo.RedirectStandardError = true;
- startInfo.CreateNoWindow = true;
- Process p = Process.Start(startInfo);
- // 截取输出流
- StreamReader reader = p.StandardOutput;
- string line = reader.ReadLine();
- while (!reader.EndOfStream)
- {
- if (!string.IsNullOrEmpty(line))
- {
- line = line.Trim();
- if (line.StartsWith(" Physical Address "))
- {
- macs.Add(line);
- }
- }
- line = reader.ReadLine();
- }
- // 等待程序执行完退出进程
- p.WaitForExit();
- p.Close();
- reader.Close();
- return macs;
- }
- }
- }
|