findstr

  • Thread starter Thread starter Jason Sands
  • Start date Start date
J

Jason Sands

I currently use the following for looking at some computers network
connections, but want to eliminate any 127.0.0.1 connections listed


netstat -no | findstr ESTABLISHED > desktop\netstat.txt


TIA
JHS
 
Jason Sands said:
I currently use the following for looking at some computers network
connections, but want to eliminate any 127.0.0.1 connections listed


netstat -no | findstr ESTABLISHED > desktop\netstat.txt


TIA
JHS

Try this:

netstat -no | find /i "established" | find /v "127.0.0.1" >
desktop\netstat.txt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top