在 5 秒内为 运行 没有互联网的程序编写脚本

Script to run a program with no internet during 5sec

我正在寻找一种方法来 运行 一个特定的程序,该程序将在 5 秒或更长时间内无法访问互联网,然后可以访问互联网。不关心处理方式,只要它比断开我的计算机与互联网并重新连接它更快即可。感谢您的回复。 (不知道这个问题贴了什么标签)

您可以使用包含以下内容的批处理文件:

netsh interface set interface "Local Area Connection" DISABLED
start myProgram.exe
timeout /t 5 /nobreak
netsh interface set interface "Local Area Connection" ENABLED
exit

当然,您需要将 "Local Area Connection" 替换为您的网络连接的实际名称和 "myProgram.exe" 与您的实际程序名称。