Created
October 30, 2017 20:20
-
-
Save RobsonAutomator/6214dc34b46f20654c31b9060f73139e to your computer and use it in GitHub Desktop.
Displays all processes listening on port 443
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gets all processes listening on TCP port 443 | |
(Get-NetTCPConnection -LocalPort 443 -State Listen | Select-Object @{Name="Id";Expression={$_.OwningProcess}} | Get-Process).ProcessName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment