Overview
Logging pings can be very useful for troubleshooting network issues or monitoring the stability of a connection over time.
Requirements
- PowerShell
- Local Administrator Rights
- Device or Machine IP address
How to Log Pings
- Open PowerShell as an administrator
- Use the following command to start logging pings with timestamps
ping.exe -t [DeviceIP] | ForEach {"{0} - {1}" -f (Get-Date), $_} >> [LogPath]- Replace [DeviceIP] with the IP address you want to ping; e.g. 192.168.0.100
- Replace [LogPath] with the file you want to store the ping log; e.g. c:\cnc100pinglog.txt

- As long as the PowerShell Window is open, the test will continue

- To view the log, open the file
- To stop, simply close the PowerShell window or press CTRL + C to stop the logging process
Related Articles
How to Use Okuma SCOUT to Determine MTConnect Version & Compatibility
Overview This guide will take you through the steps to see if your P series Okuma CNC is compatible with MTConnect Requirements Setup a free Okuma Account (found at www.myokuma.com) SCOUT app (found at www.myokuma.com) USB Flash Drive Optional: USB ...
How to add a Service Account to a Windows Service
Overview To access network resources, a Windows service requires authentication credentials. This article will guide you on how to add user credentials (Service Account) to a Windows service. Add Credentials to a Windows Service Open "services.msc" ...