在命令行中禁用以太网连接达特定时间

时间:2014-12-23 05:20:52

标签: windows cmd

我想在特定时间内禁用机器的网络(Windows(比如说)),之后机器应再次进入网络状态。 有谁能建议这个命令?

1 个答案:

答案 0 :(得分:1)

在Windows 7中你可以尝试

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?

你可以从超级用户堆栈交换中获得帮助,

https://superuser.com/questions/520755/bat-file-to-disable-ethernet-adaptor-and-then-reenable-it-after-windows-log-in

答案似乎更合适,但.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