Situatie
To auto save command output in a text document, it is pretty easy. Just do the following:
- Open a cmd window
- input the command you want to save (for example ipconfig) you type as follows:
ipconfig /all >ipconfig.txt;
With that command the output will be saved in the new txt file you specified (in this case it is ipconfig.txt)
Using this command, you can save any command output in a txt file.
Leave A Comment?