Pregunta

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?

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top