Get-NetTCPConnection -RemotePort 443 -State Established | Select-Object -Property RemoteAddress, State, OwningProcess, ProcessName | ForEach-Object {
$_.Processname = (Get-Process -Id $_.OwningProcess).Processname
$_ }

Leave a Reply

Your email address will not be published.

*