Launch all selected programs (with/without) parameters

Here you can propose new features, make suggestions etc.

Moderators: Hacker, petermad, Stefan2, white

Post Reply
User avatar
eugensyl
Power Member
Power Member
Posts: 564
Joined: 2004-06-03, 18:27 UTC
Location: România
Contact:

Launch all selected programs (with/without) parameters

Post by *eugensyl »

Many times I want to launch more than one file, many Hotfix - for example, one after one.

In console windows this is possible, but the file .cmd must be edit every time when a change occur:

START /wait prog1.exe /param
START /wait prog2.exe /param
START /wait prog3.exe /param
START /wait prog4.exe /param

where param are silent and no restart parameters.

How can I do this with list %N%P ?

There are two situations: parameters can be or not the same.

Maybe a plugins can solve this.
My Best Wishes,

Eugen
User avatar
m^2
Power Member
Power Member
Posts: 1413
Joined: 2006-07-12, 10:02 UTC
Location: Poland
Contact:

Post by *m^2 »

There's a .bat plugin.
And TCBL addon.
User avatar
Horst.Epp
Power Member
Power Member
Posts: 6972
Joined: 2003-02-06, 17:36 UTC
Location: Germany

Post by *Horst.Epp »

Use the %L parameter like in the following:

cmd /c C:\path_to_your_batch.cmd %L

This gives you a file in temp with all your selections. The name of this file is given to your batch file which then can use a for command to process all the lines.
Post Reply