Windows 10 How to run multiple Windows .bat in one master .bat?

  • Thread starter Thread starter RustyS2
  • Start date Start date
R

RustyS2

Hello All,I would sure appreciate some assistance with this. I have 20 individual batch files that I run routinely, which spin off sequentially numbered copies of a template into different folders. Rather than running through all 20 .bat files, double clicking each, how can I string this together in a single .bat file that calls all of the underlying .bat files...or better yet, just combine it all into one .bat file? Here is an example of two individual .bat files. Thank you for considering!FILE 1:@echo off for /L %%i IN (1,1,28) do call :docopy %%i goto :EOF :docopy set FN=00%1 set FN=%FN:~

Continue reading...
 
Back
Top