• Lynn Pettis - Tuesday, February 13, 2018 3:54 PM

    I don't use a lot of batch scripts so just curious what the pause at the end of batch statements is doing.

    That's probably there so any output from the commands in the batch can be seen on the screen, otherwise the command window would just close when the batch script was complete.  The other option that people use to get around that side effect is to redirect standard output to a text file to essentially log any results the commands return using the > operator to create a new text file and >> operator to append to an existing file.