How to figure out which process is running on port 80 in windows 7
1. Open the command prompt in administrator mode
2. Type the command netstat -aon | findstr :80. to find the process Ids that currently use port 80
3. To know more about this process id 6992, type the command tasklist /svc /FI "PID eq 6992"
4. To Kill the process, use the command Taskkill /PID 6992 /F
Hope this helps :)
1. Open the command prompt in administrator mode
2. Type the command netstat -aon | findstr :80. to find the process Ids that currently use port 80
3. To know more about this process id 6992, type the command tasklist /svc /FI "PID eq 6992"
4. To Kill the process, use the command Taskkill /PID 6992 /F
Hope this helps :)
No comments:
Post a Comment