Windows 10 - How do I keep netstat constantly running?
Solution 1:
Use the interval switch (see below):
Solution 2:
You create a batch file for netstat
using loop
:loop
netstat -nao | findstr :80
timeout /T 500
clear
goto loop
Use the interval switch (see below):
You create a batch file for netstat
using loop
:loop
netstat -nao | findstr :80
timeout /T 500
clear
goto loop