Basically I have written a "script" in notepad and saved it as a .bat
file. All it does is to change directory. Written like this:
cd C:\Users\Hello\Documents\Stuff
It does change the directory, but i want to write more after that, within the cmd
. Ex. choose a program to run. It seems simple, but i can't figure it out. I read about pause
, but it just waits for a key and then closes down.
Try the following:
cmd /k
starts a newcmd
instance,/k
stops terminating the console window after the commands are finished.Put
cmd /k
on the very last line of the script.end your bat file with
@pause
on its own line