Tags: process

How to find Windows process using port

Windows Send feedback »
netstat -an |find /i "listening" netstat -an |find /i "established" netstat -ao |find /i "listening" 1. netstat -aon | findstr "" This shows if the specified is being used. The number in the last column is the process id (PID) of the p… more »

Aix: Displaying the top 10 CPU / Memory consuming processes

Technology, Aix Send feedback »
Displaying the top 10 CPU-consuming processes # ps aux | head -1; ps aux | sort -rn +2 | head -10 Displaying number of processors in the system # lsdev -Cc processor Displaying the top 10 CPU-consuming processes # ps aux | head -1 ; ps au… more »