我甚至不知道这是否可能,我当然也不知道怎么做。
Disconnect my internet connection
run software (e.g. C:\notepad.exe)
Restore my internet connection when I close software谢谢
发布于 2015-07-25 11:03:24
首先,没有什么是不可能的编程。
创建具有以下内容的批处理文件
@echo off
start /wait ipconfig /release
START /WAIT notepad.exe
start /wait ipconfig /renewhttps://stackoverflow.com/questions/31625433
复制相似问题