需要 VBscript 来重置我的 Vista PC 上的 WiFi
需要 VBscript 来重置我的 Vista PC 上的 WiFi
Need a VBscript to reset wifi on my Vista PC
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
需要 VBscript 来重置我的 Vista PC 上的 WiFi
Need a VBscript to reset wifi on my Vista PC
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
查看 Win32_NetworkAdapter 类。不幸的是,其中的
Reset
功能尚未实现,但有禁用 和 启用 方法,我假设如果您首先禁用它然后再次启用它,您将获得与重置相同的效果。Enable
方法的链接中有一些示例 vbscript 代码。通过查看
Win32_NetworkAdapter
类的各种属性,您应该能够区分计算机上的 wifi 适配器。但是,请注意,我认为某些 wifi 适配器会谎报它们的 AdapterType 属性,因此您可能需要查看除该属性之外的其他属性。Look at the Win32_NetworkAdapter class. Unfortunately the
Reset
function in there is not implemented but there are Disable and Enable methods and I'd assume that you'd achieve the same effect as a reset if you first disable it and then enable it again.There's some sample vbscript code in the link for the
Enable
method.You should hopefully be able to distinguish the wifi adapter on your machine by looking at the various properties of the
Win32_NetworkAdapter
class. However, be aware that I think some wifi adapters will lie about whatAdapterType
they are, so you might have to look at other properties than just that one.