我想在特定时间内禁用机器的网络(Windows(比如说)),之后机器应再次进入网络状态。 有谁能建议这个命令?
答案 0 :(得分:1)
,
wmic path win32_networkadapter where NetConnectionID="Local Area Connection" call disable
wmic path win32_networkadapter where NetConnectionID="Local Area Connection" call enable
加上它似乎是一个重复的问题...
Disabling ethernet connection with command line?
你可以从超级用户堆栈交换中获得帮助,
答案似乎更合适,但.bat文件方法仍然更好,
@echo on
timeout /t 10
netsh interface set interface "Local Area Connection" DISABLED
timeout /t 10
netsh interface set interface "Local Area Connection" ENABLED