移动设备 MAC 地址
我有一个 Windows Mobile 项目。我想获取设备的 MAC 地址或号码以确保我的软件的安全。我的项目是Windows Ce和Windows Mobile 6(两个项目)。如何从移动设备获取价值? (我看了同样的问题,但它们是关于蓝牙 MAC 地址的,有些设备没有它)
I have a windows mobile project.I want to get the MAC address or numbers of the device for securitiy of my software. My project is in Windows Ce and Windows Mobile 6 (two project). How can I get the value from the mobile device? (I looked the same questions but they are about Bluetooth MAC address and some devices don't have it)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用
GetAdaptersInfo
API。它返回一个IP_ADAPTER_INFO
这是一个缓冲区设备适配器的所有信息。IP_ADAPTER_INFO
包含一个名为Address
的成员,它是适配器的 MAC 地址。Call the
GetAdaptersInfo
API. It returns anIP_ADAPTER_INFO
which is a buffer of all infos for the device's adapters. TheIP_ADAPTER_INFO
contains a member calledAddress
which is the adapter's MAC address.由于我花了很多时间来找到 VB.NET 方法来实现此目的,因此我将这篇文章发布给任何可能有用的人。
Since I take a lot time to find a VB.NET way to this,so I post this for anyone that could be useful.