如何从 Windows 应用程序检测禁用的网络接口连接?
我想知道接口何时被禁用。
如果我进入窗口管理器并禁用 2 个启用的连接之一,GetIfTable() 仅返回有关 1 个接口的状态,它不再看到断开连接的连接。 (返回 1 个表)
如何返回被禁用的接口仍然存在但当前被禁用的信息?
谢谢。
http://msdn.microsoft.com/en-us /library/aa365943%28VS.85%29.aspx
I would like to know when a interface has been disabled.
If I go into the windows manager and disable one of the 2 enabled connections, GetIfTable() only returns status about 1 interface, it no longer sees the disconnected one.
(Returns 1 table)
How can I get something to return that the disabled interface still exists but is currently disabled?
Thanks.
http://msdn.microsoft.com/en-us/library/aa365943%28VS.85%29.aspx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我认为您只需要阅读注册表即可。
例如,这是在网络上找到的一个片段,内容应该如下所示:
I think you would just need to read the registry.
For example, this is a snippet found on the web of what things should look like:
如何使用
netcon.h
中的接口,如此示例所示?该示例中的代码以编程方式启用和禁用接口,但我做了一些修改,以便您可以查询状态:How about using the interfaces from
netcon.h
as illustrated in this example? The code in that example enables and disables the interface programmatically, but I've made some modifications so that you could query the status instead:另一种选择是使用
Win32_NetworkAdapter
WMI 类,检查
NetConnectionStatus
和NetEnabled
属性。Another option is use the
Win32_NetworkAdapter
WMI Class , check theNetConnectionStatus
andNetEnabled
properties.IP_ADAPTER_ADDRESSES 结构包含一个 OperStatus 成员。
请参阅 MSDN 文档
我认为它可用于检测禁用的 NIC。我没有尝试。
这是一个测试代码:
The IP_ADAPTER_ADDRESSES structure hold an OperStatus member.
See MSDN documentation
I think it can be used to detect disabled NICs. I didn't try.
Here is a test code:
根据这个CodeGuru论坛留言,可以查询WMI有关此信息(此处提供了 AC# 代码)。
要使用 C++ 查询 WMI,请参阅以下两个链接:
According to this CodeGuru forum message, you can query WMI for this information (A C# code is provided there).
To query WMI using C++, see these two links:
命令行:
输出:
command-line:
Output: