How to keep cmd running after opening a .bat file script
batch-file, cmd, directory, windows
Solution
Put `cmd /k` on the very last line of the script.
Problem
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.