using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Management; namespace _17获取MAC地址
{
class Program
{
static void Main(string[] args)
{
ManagementObjectSearcher nisc = new ManagementObjectSearcher("select * from Win32_NetworkAdapterConfiguration");
foreach (ManagementObject nic in nisc.Get())
{
if (Convert.ToBoolean(nic["ipEnabled"]) == true)
{
Console.WriteLine("{0} - {1}", nic["ServiceName"], nic["MACAddress"]);
}
} Console.ReadKey();
}
}
}
相关文章
- 06-05Vue-cli项目axios+require动态获取后台数据库的图片地址
- 06-05lua-将请求参数里url的地址获取到后进行重定向
- 06-05从Android中的地址获取纬度,经度
- 06-05C – 如何在lldb / Xcode中获取std :: vector对象的地址
- 06-05火狐mozilla官方ftp站点获取旧版本火狐的下载地址
- 06-05获取客户端访问的ip地址
- 06-05百度地图获取搜索后获取选中标注的名称、地址、坐标等信息
- 06-05IP地址和MAC地址绑定的必要性
- 06-05交换机的端口状态是UP,但是查询该端口下的MAC地址为空
- 06-05c# – 无法在鼠标事件处理程序中读取WPF中保持的键状态 – VMWare Fusion for Mac中Windows guest虚拟机中的行为不一致