使用批处理文件暂停exe

时间:2013-05-02 11:41:34

标签: batch-file exe wait

我不知道这是否可能

但是我可以暂停一个exe并等待批处理文件完成再次使用exe恢复吗?

1 个答案:

答案 0 :(得分:3)

我会查看SysInternals工具“pssuspend”。你可以给它一个进程ID:

PsSuspend suspends or resumes processes on a local or remote NT system.

Usage: pssuspend [-r] [\\RemoteComputer [-u Username [-p Password]]] <process Id or name>
     -r    Resume.
     -u    Specifies optional user name for login to
           remote computer.
     -p    Specifies optional password for user name. If you omit this
           you will be prompted to enter a hidden password.

转到http://www.sysinternals.com,查找“流程实用程序”,然后“pssuspend”。

一般来说,我建议熟悉sysinternals工具;它们非常有用。