Published
- 1 min read
powershell see ports in use
The solution for this is noted below
powershell see ports in use
Solution
See Ports in Use:
Get-NetTCPConnection | where Localport -eq PORT_NUMBER | select Localport,OwningProcess
Kill Port In Use
*Set this command*
netstat -ano | findstr :PORT_NUMBER
*To find a ID Process look a exemple below*
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING THIS IS ID PROCESS --->[12948]
*Kill IDProcess*
taskkill /PID IDPROCESS /F
Try other methods by searching on the site. That is if this doesn’t work