如何编写记事本代码以自动 运行 许多延迟的程序?
how to code a notepad to auto run many programs with a delay?
抱歉,这个问题与编程语言不太相关。但如果你能帮忙,谢谢。
这就是我对自动运行文件的完全了解,
[autorun]
;Open=LynxPortable.exe
ShellExecute=LynxPortable.exe
UseAutoPlay=1
例如你应该这样做
@ECHO off
START "" "C:\Program Files (x86)\Hotspot Shield\bin\hsscp.exe"
timeout /t 30 >NUL
Taskkill /IM "hsscp.exe" /F
Exit
抱歉,这个问题与编程语言不太相关。但如果你能帮忙,谢谢。
这就是我对自动运行文件的完全了解,
[autorun]
;Open=LynxPortable.exe
ShellExecute=LynxPortable.exe
UseAutoPlay=1
例如你应该这样做
@ECHO off
START "" "C:\Program Files (x86)\Hotspot Shield\bin\hsscp.exe"
timeout /t 30 >NUL
Taskkill /IM "hsscp.exe" /F
Exit