-
I posted this question a couple of days ago and no one has responded, so I'm going to post it again in hopes that maybe someone new will see it and have an answer for me:
I'm trying to write some VBScript to see if there is any network activity between two computers. The computers are on the same domain and I know the names of them, but I just need to be able to check to see if there are any open connections between the two computers. Any ideas on how I can do that?
-
There is an utillity called netstat it will/can show all the connections a computer has; ipadress ,port locale, port remote; status. You could use that to check for any connections between your pc and the target pc. Output the netstat data to a file(netstat > netstat_data.txt) and parse it.
-
Ok, yeah, I can do that, we use netstat right now to do the same thing manually, I just never thought to output it to a file. Thanks!