Link to home
Start Free TrialLog in
Avatar of MiguelSilvestre
MiguelSilvestre

asked on

Run a batch or vbs file

Hi to all,

I'm stuck with this .....

I need to run a batch or vbs file to start two aplications ......

App_a
App_b

I'm using the following :

@echo off

App_a
App_b

EXIT

The only problem is when App_a starts the batch waits and only if i close the App_a it runs the App_b ....

I need to run both at the same time and exit/close the batch file ....

Miguel
ASKER CERTIFIED SOLUTION
Avatar of LeeTutor
LeeTutor
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MiguelSilvestre
MiguelSilvestre

ASKER

Hi LeeTutor,

I do this :

@echo off

START "title_1" "%PROGRAMFILES%\something.exe"
START "title_2" "C:\Program Files\something_2.exe" /q

EXIT

And works great :))

Tks

Miguel