Task Running on Port

Jun 5, 2024
1 min read
Jul 2, 2024 17:19 EEST

Find Process Listening on Port

Execute on powershell to find the process that listens on port 8080:

Get-Process -Id (Get-NetTCPConnection -LocalPort 8080).OwningProcess

Take the Id and kill it e.g. in task manager.


Related Posts