能不能用bat实现一键打开/关闭wlan?
有大佬知道怎么用bat或其他编程语言实现一键打开/关闭wlan吗? 以管理员方式运行CMD,禁用无线网络输入:netsh interface set interface name="WLAN" admin=disable,回车运行启动话只需把命令中的disable改成enable即可
在win7系统中和win8系统中关闭的方法一样,但是因为无线网络叫法不一样,所以win7和win8/win10系统的命令存在区别,win7叫做无线网络连接,win8/win10叫做WLAN
pubh 发表于 2021-10-12 16:04
以管理员方式运行CMD,禁用无线网络输入:netsh interface set interface name="WLAN" admin=disable,回车 ...
这个貌似要看适配器设置中的名称吧? 搜了下
https://github.com/WaterPhoenix8/WiFi-wired_switch 禁用网卡:
netsh interface set interface name="接口名称" admin=DISABLE
例如:
netsh interface set interface name="WLAN" admin=DISABLE
netsh interface set interface name="ytw" admin=DISABLE
启用网卡:
netsh interface set interface name="接口名称" admin=ENABLE
例如:
netsh interface set interface name="WLAN" admin=ENABLE
netsh interface set interface name="ytw" admin=ENABLE 学习了,还不知道这些DOS命令的使用方法,谢谢各位网友的分享。 这个要是学会的话就牛了 ,好久都没写程序;了
页:
[1]