I'm trying to create a very simple batch file that would run ipconfig
and display the output, and then pause so I can see my machine's ip address on the local network.
Here's the code :
ipconfig
Pretty simple right? Yet it doesn't work, the script starts an infinite loop :
Adding a pause
command at the end of the script doesn't change anything. What am I missing?