PowerTip: Use PowerShell to Find Connections to Remote Servers

Doctor Scripto

Summary: Use Windows PowerShell to find connections to remote servers.

Hey, Scripting Guy! Question How can I use Windows PowerShell while I am troubleshooting my computer to find what
          connections are made to remote servers via port 80?

Hey, Scripting Guy! Answer Use the Get-NetTCPConnection command, specify the remote port of 80, and select the remote addresses:

Get-NetTCPConnection -RemotePort 80 | SELECT RemoteAddress

0 comments

Discussion is closed.

Feedback usabilla icon