xxxxxxxxxx
This Command will give you the Process Id [ Pid ]
Syntax: netstat -aon | findstr <port_number>
> netstat -aon | findstr 8080
Then you can find the Application using that pid
Syntax: tasklist | findstr <pid>
> tasklist | findstr 9260
To Kill that process use this command
> taskkill /pid 6016 /f
:- @Zenonymous