Is there a way to keep the cmd command history between sessions?
5 Answers
I've found 2 ways, neither of which require switching to PowerShell.
- 245
- 2,711
Switch to using PowerShell, and follow the instructions at the following site to enable history:
https://devblogs.microsoft.com/powershell/perserving-command-history-across-sessions/ (archived)
Alternatively, in cmd.exe, you can use "doskey /history" at the end of your session to show what you typed in that session, but theres no way to really load it into the next session.
- 4,158
- 3,770
Saving history is a small workflow - here's a less "heavy" way to do this (no external libs).
Create a bat/cmd file to set up your history, in this case I called it MyEnvironment.cmd:
doskey save=doskey /history $g$g C:\CmdHistory.log
doskey quit=doskey /history $g$g C:\CmdHistory.log $T exit
doskey history=find /I "$*" C:\CmdHistory.log
cls
Then run this from "Start->Run" (you can also setup an alias for this too):
cmd.exe /K C:\MyEnvironment.cmd
Every time I'm closing a session I hit "quit" - or if I'm afraid of losing history mid-session I hit "save". If I want to grep for something in history, I just hit "history KEYWORD".
Per @dave_thompson_085 's comment, the AutoRun feature works well if you don't want to use the /K switch. If you set up the Registry key correctly, the .cmd or .bat does not need to be in %AppData%, it can be in the same location it already is.
If you do use the %AppData% location, be aware that cmd will probably look for your batch file in the "Roaming" folder (instead of the AppData root).
More info on the AutoRun CMD feature: https://superuser.com/a/302553/333316
Update (Oct. 2020) on Autorun: I've used this feature now for years, but would like to point out many programs that rely on CMD to run background commands (Visual Studio, Win32 apps), get very confused if anything runs before the passed CMD command (e.g. VS developer prompt). If this causes pain, switch to the /K method.
- 1,084
My solution may qualify as worse than a hack—perhaps even cheating.
I save the history of my session's commands into a file, say,
doskey /h > mysession.txt
Then, in the next session, I open mysession.txt with the text editor, copy the command I am interested in, and paste it into the cmd/shell session, and execute it directly.
Downvotes are rightly deserved ^_^.
- 175