如何断开互联网、运行 软件、重新启动互联网
How do I disconnect internet, run software, restart internet
我什至不知道这是否可能,我当然不知道该怎么做。
Disconnect my internet connection
run software (e.g. C:\notepad.exe)
Restore my internet connection when I close software
谢谢
首先,编程无所不能。
创建包含以下内容的批处理文件
@echo off
start /wait ipconfig /release
START /WAIT notepad.exe
start /wait ipconfig /renew
我什至不知道这是否可能,我当然不知道该怎么做。
Disconnect my internet connection
run software (e.g. C:\notepad.exe)
Restore my internet connection when I close software
谢谢
首先,编程无所不能。
创建包含以下内容的批处理文件
@echo off
start /wait ipconfig /release
START /WAIT notepad.exe
start /wait ipconfig /renew