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
Dec 04 | Golang With Race Detector on Windows | 1 min read |
Sep 12 | Convert MBR to GPT | 1 min read |
May 18 | Remote Reboot | 1 min read |
Sep 08 | Docker | 1 min read |
Dec 18 | Backup using rsync | 1 min read |