Frage

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?

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top