It can be useful to time how long certain commands take to run. With Powershell, you can do this easily using the Measure-Command cmdlet: Measure-Command { ping google.com | Out-Default } Simply replace ping google.com with whatever you want to time, and off you go. You’ll get a readout similar…