I am creating a batch file that should open a second batch of script in a separate cmd window. I can use all my code successfully if I use the "call" command instead of "start", but does not run the script in my own window. I got this error many times in the past and is always associated with the start command. I am changing how I am doing this process and everything works well. Why does the start command cause this error and how to fix it? Below is a sample of my code.
start "" /w "k:\Bundle Support files\record serial.cmd"
The second batch file opens and completes all tasks except the last, which
goto :exit :exit
I changed the last command in the file several times and always made it through the entire batch, but the last command that would end this batch with the error "Not enough memory to process this command". This happens on several machines (various equipment) and several OS. I tried to fix IRPStackSize with no luck. Any suggestions as to why I am getting this error?
Thanks Kevin
command memory batch-file
Kevinb
source share