Is there a way to step through a .bat script ? The thing is , I have a build script , which calls a lot of other scripts , and I would like to see what is the order in which they are called , so that I may know where exactly I have to go about and add my modifications .
|
|
I don't know of anyway to step through the execution of a .bat file but you can use
Source: Batch File Help @workmad3: answer has more good tips for working with the Another helpful resource... DDB: DOS Batch File Tips |
|||
|
|
|
The only way I can think of is spinkle the code with |
||
|
|
|
|
Did you try to reroute the result to a file? Like whatever.bat >log.txt You have to make sure that in this case every other called script is also logging to the file like >>log.txt Also if you put a date /T and time /T in the beginning and in the end of that batch file, you will get the times it was at that point and you can map your script running time and order. |
||||
|
|
|
Make sure there are no 'echo off' statements in the scripts and call 'echo on' after calling each script to reset any you have missed. The reason is that if echo is left on, then the command interpreter will output each command (after parameter processing) before executing it. Makes it look really bad for using in production, but very useful for debugging purposes as you can see where output has gone wrong. Also, make sure you are checking the ErrorLevels set by the called batch scripts and programs. Remember that there are 2 different methods used in .bat files for this. If you called a program, the Error level is in %ERRORLEVEL%, while from batch files the error level is returned in the ErrorLevel variable and doesn't need %'s around it. |
|||
|
|
|
|
Or.... Call your main .bat file from another .bat file and output the result to a result file i.e. runner.bat > mainresults.txt Where runner.bat calls the main .bat file You should see all the actions performed in the main .bat file now |
||
|
|
|
|
rem out the @ECHO OFF and call your batch file redirectin ALL output to a log file.. c:> yourbatch.bat (optional parameters) > yourlogfile.txt 2>&1 found at http://www.robvanderwoude.com/battech_debugging.php IT WORKS!! don't forget the 2>&1... WIZ |
||
|
|
