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 1echo off for /L %%i IN (1,1,28) do call :docopy %%i goto :EOF :docopy set FN=00%1 set FN=%FN:~
Continue reading...
Continue reading...