1. What program besides Skype can block port 80?
  2. What standard programs of Windows can block the 80th port?
  • 1) Apache (at least from Denver). and not to block, but just to use. 2) Firewall. In general, this is a root code question. - KoVadim
  • Problem when installing apache. no firewall) - damasco
  • teamviewer - lampa
  • teamviewer either. - damasco
  • what other programs? - damasco

1 answer 1

Option 1. For those who are easier to click:

Ctrl+Shift+Esc -> Быстродействие -> Монитор ресурсов
Сеть -> Порты прослушивания

Find the port and info on the program that borrowed it.

Option 2. For fans of black screens and green text:

 netstat -ano | findstr :80 

Then, look at the PID and determine the name:

 tasklist | findstr <PID> 

Replace <PID> PID.

  • you can also netstat -a -n in the console - ArcherGodson
  • one
    Handsome man Great answer! - Oleg
  • @ArcherGodson, then already: netstat -ano | findstr: 80 Then, look at the PID and determine the name: tasklist | findstr <PID> Replace <PID> with a PID. @exec, thank you :) - xEdelweiss