Answers for "check port used"

13

check port windows

netstat -aon
Posted by: Guest on August-15-2020
-1

check which application is using port

In Windows CMD/Powershell:
netstat -aon | findstr '[port_number]'
Posted by: Guest on October-02-2020
0

find which service is using port

netstat -aon | findstr<port_number>  

 tasklist | findstr 9260
Posted by: Guest on December-10-2020
7

see what ports are in use

Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess
Posted by: Guest on April-02-2020

Browse Popular Code Answers by Language