Run ipconfig
Have you ever needed or wanted to run a command from your run window?
win+r
run caption |
Have you ever wanted to run a cmd command from there?
cmd /k <command> will allow you to run the command in terminal and keep terminal displaying.
For convenience I like to set this up to run my "ipconfig"
to do this all I do is:
cmd /k ipconfig /all
If you want to do more than this, and store your config somewhere, you can run this
cmd ipconfig /all > C:\Users\%username%\Desktop\ipconfig.txt
This will right the stats to the text file on your Desktop
#bearMan
No comments:
Post a Comment