powershell get who use port code example
Example: powershell see ports in use
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