Hy, I want to create batch file to display to the user information about Downloaded packages and Uploaded packages. This info I can get from command 'netstat -e' and I can save this info in log file using 'netstat -e >log.txt'. But I want, when opening this new batch file, that user can see only info about Downloaded and Uploaded packages, not all info from this command, something like this:
Downloaded packages: -info from netstat -e-
Uploaded packages: -info from netstat -e-
Is it possible to cut this info from a log file and put it into batch file when user open this batch? The whole process, after is opening batch file, would look something like this: -save log file with 'netstat -e >log.txt', -getting needed information, -put this info in batch file, -now user see this information.
Methods to do this can be anything, like using cmd and VBS or other.