11-28-2017, 07:33 PM
(This post was last modified: 11-28-2017, 07:36 PM by Friedslick6.)
As minor as this is, any convenience in a major project is helpful and encouraged.
I would recommend adding the following lines at the top of your batch file to clean up output and fix potential starting directory issues:
And the following lines at the bottom to stop the console from closing and allow the user to check for errors:
I'm glad you credited Castano too.
I would recommend adding the following lines at the top of your batch file to clean up output and fix potential starting directory issues:
Code:
@ECHO OFF
CD/D%~dp0
Code:
<NUL SET/P=""
PAUSE>NUL
I'm glad you credited Castano too.