Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经为 iexpress.exe 中的输入创建了一个 .sed 文件。.sed 文件中的条目有两个应用程序。一个是批处理文件,另一个是 .exe 文件,例如:
AppLaunched=cmd.exe /c abc.bat AppLaunched2=setup.exe
创建设置并执行后,仅执行批处理文件。我想执行这两个文件。
任何想法?
如果我正确理解您的问题,您可以尝试使用 & 链接命令,
AppLaunched=cmd.exe /c abc.bat & setup.exe
还有其他一些方法,但这是最简单的方法之一。