문제

I have created a .sed file for input in iexpress.exe. The entry in .sed file has two applications. One is a batch file and another is an .exe file, for example:

AppLaunched=cmd.exe /c abc.bat
AppLaunched2=setup.exe 

After creating the setup and executing, only the batch file is executed. I want to execute both files.

Any idea?

도움이 되었습니까?

해결책

If I understand your problem correctly you could try using & to chain commands,

AppLaunched=cmd.exe /c abc.bat & setup.exe

There are a few other ways but this is one of the most simplistic.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top