how to kill process using port in windows?
Hi Friends 👋, Welcome To Infinitbility! ❤️ To kill process using port in windows, open your cmd as administrator and do run netstat -ano | findstr :<PORT> (replace <PORT> with your port number ) copy PID number which you want kill in the list run taskkill /PID <PID> /F (replace <PID> with your pid number ) That’s it. Sometime’s we want to run some application like node, react, golang, graphQL and etc but windows show this port already in used in my case i want to start start react application on 3000 port but i’m not able to start because something working on 3000 port....