The most recent content from our members.
This all started from a simple command I ran in another monitoring tool that is being replaced. netstat -an | find "TCP" | find ":1433" | find /c "ESTABLISHED" Then I replicated it in powershell: (Get-NetTCPConnection | Where-Object { $_.RemotePort -eq '1433' -and $_.State -eq 'ESTABLISHED' }).count I realize that when I…
It looks like you're new here. Sign in or register to get started.