Created
November 1, 2023 10:23
-
-
Save nerdegem/70ca6f08f4d13ee8a272b7bbfa224a6b to your computer and use it in GitHub Desktop.
Ongoing Ping Test in Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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