Windows 10 - How do I keep netstat constantly running?

Solution 1:

Use the interval switch (see below):

enter image description here

Solution 2:

You create a batch file for netstat using loop

:loop 
netstat -nao | findstr :80
timeout /T 500
clear
goto loop