Help me run a series of .bat script
they are located like so:
p:\Co-Brand\export.bat p:\Generic\export.bat p:\Tri-Brand\export.bat
Thanks in advance, Best regards, Joe
Help me run a series of .bat script
they are located like so:
p:\Co-Brand\export.bat p:\Generic\export.bat p:\Tri-Brand\export.bat
Thanks in advance, Best regards, Joe
Would a simple shell command do? You can call this from a command prompt:
for /R %F in (*.bat) do "%F"
or the following from a .bat file:
for /R %%F in (*.bat) do call "%%F"
found a way that works, should have tried this first of all. I am a bit embarrassed that it was this easy actually:
cd P:\Co-Brand\
CALL Export.bat
cd P:\Generic\
CALL Export.bat
cd P:\TriBrand\
CALL Export.bat
cd P:\UBA\
CALL Export.bat