Kill process in Windows :
We can kill the process by using a port in below two steps.
Step 1:
Get the process id using port number by firing below command.
C:\> netstat -ano | findstr :YourPortNumber
Step 2 :
Kill the process using PID by firing below command.
C:\> taskkill /PID enterPID /F
Happy Learning 🙂