使用 WMI 确定哪些适配器连接到互联网
我正在编写一个 VB 脚本,它使用 WMI 来确定哪个适配器用于 Internet 连接?例如 - 如果我有一个 LAN 和一个 3G 板,它需要告诉用户哪个已连接。我知道一台机器可能有 >1 个互联网连接,但现在,我们假设 1.
编辑: 好的,我怎样才能使用任何命令工具来做到这一点?鉴于一片寂静,我想使用 WMI 无法做到这一点。 :-) 痕迹打印有用吗?我对跟踪不太熟悉。
预先感谢您的任何帮助! 富有的
I am writing a VB Script that uses WMI to determine which adapter is used for internet connectivity? For example - if I have a LAN and a 3G board it needs to tell the user which is connected. I understand that a machine might have >1 internet connection, but for now, let's assume 1.
edit:
Ok, how can I do this using any command tool? Given the roaring silence, I guess this is not do-able using WMI. :-) Would trace print work? I'm not too familiar with trace.
Thanks in advance for any help!
Rich
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用Win32_NetworkAdapterConfiguration查找IPConnectionMetric最低的网络设备,这将是第一个用于互联网访问的设备。
用于访问 WMI 的 VBScript 示例可以在 MSDN 上找到
Using Win32_NetworkAdapterConfiguration find the network device that has the lowest IPConnectionMetric, this will be the first device used for internet access.
VBScript examples for accessing the WMI can be found on MSDN