Here is a little script that i came up with, its purpose is to let you see how meany bytes are being sent through your computer
- Code:
@echo off
title bytes recieved / sent viewer
mode con cols=55 lines=15
:1
cls
netstat -e
ping -n 2 localhost >nul
goto 1