Name:
Get TCP/IP Congestion
Category:
Event Logs
Description:
Displays all events in the target computer's System Event Log with TCP/IP provider and ID 4230.
Required Software:
PowerShell
Command:
Write-Output "Network congestion on $(Computer:TARGET)"
Get-WinEvent -ComputerName $(Computer:TARGET) -LogName System -ErrorAction SilentlyContinue |
where {$_.ProviderName -match "Tcpip" -and $_.ID -eq 4230} |
Format-List -property TimeCreated, LogName, ProviderName, LevelDisplayName, ID, Message
More Info/Usage:
Comments
0 comments
Article is closed for comments.