Texonom
Texonom
/
Computing
Computing
/Computing Theory/Information Theory/Information science/Information technology/Software Industry/Software Platform/Cloud Industry/Microsoft/Microsoft OS/Windows OS/Windows Command/Powershell/
Powershell Get-Process
Search

Powershell Get-Process

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2021 Aug 1 17:16
Editor
Editor
Seonglae ChoSeonglae Cho
Edited
Edited
2021 Aug 1 17:17
Refs
Refs

tcp

 
 

udp

 
 
 
How can you find out which process is listening on a TCP or UDP port on Windows?
Asked How can you find out which process is listening on a TCP or UDP port on Windows? Ben Voigt 263k 37 37 gold badges 383 383 silver badges 678 678 bronze badges readonly readonly 310k 101 101 gold badges 198 198 silver badges 202 202 bronze badges 7 Get-Process -Id (Get-NetTCPConnection -LocalPort YourPortNumberHere).OwningProcess Get-Process -Id (Get-NetUDPEndpoint -LocalPort YourPortNumberHere).OwningProcess C:\> netstat -a -b (Add -n to stop it trying to resolve hostnames, which will make it a lot faster.)
How can you find out which process is listening on a TCP or UDP port on Windows?
https://stackoverflow.com/questions/48198/how-can-you-find-out-which-process-is-listening-on-a-tcp-or-udp-port-on-windows
How can you find out which process is listening on a TCP or UDP port on Windows?
 
 

Recommendations

Texonom
Texonom
/
Computing
Computing
/Computing Theory/Information Theory/Information science/Information technology/Software Industry/Software Platform/Cloud Industry/Microsoft/Microsoft OS/Windows OS/Windows Command/Powershell/
Powershell Get-Process
Copyright Seonglae Cho