The fun of batch files in Windows

Batch files perform multiple commands at once

Here's an example: Open Notepad, copy and paste the code below into it, then click File, Save as... and choose a name like "pinger.bat" then change the Save as Type drop down to "All files". Then save to your desktop.

Now, open command prompt (Windows key + R to bring up the run box, then type: "cmd" (no quotes!) and click OK or hit enter.

Now type: cd Desktop <ENTER>

now type: pinger www.google.ca

The result will be the IP address of the Google website. It'll change over time because it's google and they've spread out their search engine website among thousands of servers worldwide.

Command prompt is very helpful if you need quick answers like when the computer was last installed, and a lot more info, just type: systeminfo <enter>

If you want to get deeper, you'd use the find command to get specific details from output-creating commands like systeminfo. For example: systeminfo | find /i "install date" <enter>