I'm having this issue when running a batch file with Tivoli Workload Scheduler.
There's a third party program, let's says its name is program.exe
The batch file contains the following command to invoke program.exe
program.exe param1 param2 param3
The problem is the batch file terminates when there are warning popups from program.exe; but we're totally ok with the warning popups. We want it to run regardless of how many warnings it encounters.
I've looked into this and found out that using 'start' could solve the problem.
'call' behaves the same way as direct invoking.
So when we directly invoke the program does it default to ?
call program.exe
or is there any significant difference between direct invoke and call ?