Thanks jeb and Dave Benham for yours explanations. Actually I just try to make a "batch scripts debugger", but It's looks like impossible (for the moment) to execute commands from an external file step by step (pause betweed two lines)
Here is an example of test code: @echo off if "%USERNAME%"=="aaa" echo Ok for /L %%i in (0,1,3) do echo Line%%i ping google.com -n 2 set alpha=Test echo %alpha% pause Output: >>> Debug:> Lines= 7 '@echo' is not recognized as an internal or external command, operable program or ba...
Hi guy's, I work an a project and I have some problems to load commands from a file (drag/drop) like that: example_cmd_file.bat @echo off start calc.exe pause my_script_to_read_the_file.bat @echo off setlocal enabledelayedexpansion set linz=0 & for /F "tokens=* delims=" %%b in ('type %...