Current location - Quotes Website - Collection of slogans - How to find and release port occupation in Windows?
How to find and release port occupation in Windows?
Take port number 80 as an example, click Start-Run, enter cmd and click OK to run the following commands respectively:

1, netstat -aon | findstr "80 "It can be seen that port 80 is occupied by a program with process number 1688.

2、taskkill /pid 1688 /F

Success: The process with PID of 1688 was terminated.