我最近写了好几个实现类似功能的,但是经常不管用,我写的代码有
[Bash shell] 纯文本查看 复制代码 @echo off
echo 正在禁用无线网卡...
netsh interface set interface name="WLAN" admin=disabled
timeout /t 1
echo 正在启用无线网卡...
netsh interface set interface name="WLAN" admin=enabled
echo 操作已完成。
pause
[Bash shell] 纯文本查看 复制代码 @echo off
rem 使用PowerShell执行netsh命令以禁用WLAN接口
powershell -Command "netsh interface set interface name='WLAN' admin=disabled"
rem 延迟一段时间(可选,用于确保更改生效)
ping 127.0.0.1 -n 2 > nul
rem 使用PowerShell执行netsh命令以启用WLAN接口
powershell -Command "netsh interface set interface name='WLAN' admin=enabled"
echo WLAN接口已通过PowerShell命令成功进行禁用与启用操作。
pause
[PowerShell] 纯文本查看 复制代码 powershell -Command "netsh interface set interface name='WLAN' admin=disabled"
powershell -Command "netsh interface set interface name='WLAN' admin=enabled"
这些代码,都是时灵时不灵
后来我直接把它创建了桌面快捷键
|