Skip to content

Instantly share code, notes, and snippets.

@nerdegem
Created November 1, 2023 10:23
Show Gist options
  • Select an option

  • Save nerdegem/70ca6f08f4d13ee8a272b7bbfa224a6b to your computer and use it in GitHub Desktop.

Select an option

Save nerdegem/70ca6f08f4d13ee8a272b7bbfa224a6b to your computer and use it in GitHub Desktop.
Ongoing Ping Test in Windows
Found this great article on how to continuously ping and monitor in windows from https://community.spiceworks.com/how_to/154193-ping-with-timestamp-and-log
Essentially
1) Open a PowerShell
2) Record the session with
Start-Transcript -path C:/Script/PingLog.txt -Append
3) Run the ping - slighly amended from the reference one, in that this adds in a ping packet size of 1492 bytes (adjust for MTU)
Ping.exe -t 1.1.1.1 -l 1492 | ForEach {"{0} - {1}" -f (Get-Date),$_}
4) Check/review the log file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment