Need a VBscript to reset wifi on my Vista PC
Need a VBscript t开发者_运维问答o reset wifi on my Vista PC
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 what AdapterType
they are, so you might have to look at other properties than just that one.
精彩评论