View all processes accessing internet?

  • Thread starter Thread starter Guest
  • Start date Start date
Type: netstat /? in a command prompt and hit enter.

netstat.exe displays protocol statistics and current TCP/IP network
connections.

process identifier (PID)
[[A numerical identifier that uniquely distinguishes a process while it
runs. Use Task Manager to view PIDs.]]

Open a command prompt...
Start | Run | Type: cmd | Click OK |
Type: netstat -ano and hit ENTER

Under Local Address, look for the numbers after the colon (, that's the
port number.

You can match up the PID # in Task Manager to find the process that is using
the port.

Open the Task Manager, Ctrl + Shift + Esc.
Click on the Processes tab.
Click the PID column header to sort the PID #s in order.

Example....
-------------
C:\>netstat -ano

Active Connections

Proto Local Address Foreign Address State PID
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING 4
TCP 0.0.0.0:2963 0.0.0.0:0 LISTENING 1636
TCP 24.9.206.13:2963 207.46.248.16:119 ESTABLISHED 1636
TCP 24.9.206.13:2971 216.148.227.80:110 TIME_WAIT 0
TCP 24.9.206.13:2972 65.17.220.40:110 TIME_WAIT 0
UDP 0.0.0.0:445 *:* 4
UDP 127.0.0.1:2760 *:* 1636
-------------

In the example above PID 1636 is msimn.exe (Outlook Express).

PID numbers change every time that you reboot and are different on every
machine.

You can type in a command prompt: netstat /? for help.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
 
Wesley Vogel said:
Type: netstat /? in a command prompt and hit enter.

netstat.exe displays protocol statistics and current TCP/IP network
connections.

process identifier (PID)
[[A numerical identifier that uniquely distinguishes a process while it
runs. Use Task Manager to view PIDs.]]

Open a command prompt...
Start | Run | Type: cmd | Click OK |
Type: netstat -ano and hit ENTER

Under Local Address, look for the numbers after the colon (, that's the
port number.

You can match up the PID # in Task Manager to find the process that is using
the port.

Open the Task Manager, Ctrl + Shift + Esc.
Click on the Processes tab.
Click the PID column header to sort the PID #s in order.

Example....
-------------
C:\>netstat -ano

Active Connections

Proto Local Address Foreign Address State PID
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING 4
TCP 0.0.0.0:2963 0.0.0.0:0 LISTENING 1636
TCP 24.9.206.13:2963 207.46.248.16:119 ESTABLISHED 1636
TCP 24.9.206.13:2971 216.148.227.80:110 TIME_WAIT 0
TCP 24.9.206.13:2972 65.17.220.40:110 TIME_WAIT 0
UDP 0.0.0.0:445 *:* 4
UDP 127.0.0.1:2760 *:* 1636
-------------

In the example above PID 1636 is msimn.exe (Outlook Express).

PID numbers change every time that you reboot and are different on every
machine.

You can type in a command prompt: netstat /? for help.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
(0mpu73r |\|3rd said:
How would I view everything using my internet connection?

Thank you all =D
 
Back
Top