Summary: Use Windows PowerShell to find connections to remote servers.
How can I use Windows PowerShell while I am troubleshooting my computer to find what
connections are made to remote servers via port 80?
Use the Get-NetTCPConnection command, specify the remote port of 80, and select the remote addresses:
Get-NetTCPConnection -RemotePort 80 | SELECT RemoteAddress