I have a batch files that calls other batch files like this:
e:\foo\master.bat
has the content:
call e:\bar\run1.bat
and e:\bar\run1.bat
has the content
app1.exe
the problem is that when I run the master.bat
app1.exe
will not be executed, because it will expect it to be in the e:\foo
directory instead of it being in e:\bar
directory