asked on
@echo off
cd /d %~dp0
for /R %%s in (*.cmd) do (
call "%%~s")
PAUSE
ASKER
ASKER
ASKER
call "C:\978978978\Run.cmd"
call "C:\978978978\Script_1.cmd"
call "C:\978978978\Execute\Script_2.cmd"
call "C:\978978978\Execute\Execute\Script_3.cmd"
@echo off
cd /d %~dp0
for /R %%s in (*.cmd) do (
ECHO call "%%~s")
PAUSE
ASKER
ASKER
Batch files are text files containing a script of commands that are executed by the command interpreter on DOS, OS/2 and Windows systems. Most commonly, they are used to perform a series of functions that are repeated -- copying a set of files created daily with one step, for example.
TRUSTED BY
Open in new window