What are good command line utilites in Windows to monitor processes?
I would love to have ps, top, and time on Windows to monitor the performance of a developed C++ application on Windows from a remote shell. Are any of these available?
Solution 1:
PsList
from SysInternals (now owned by Microsoft) for ps
and top
.
For ps
-like behaviour, simply:
pslist
For top
-like behaviour:
pslist -s
timeit
from the Windows Server 2003 Resource Kit Tools for time
.
Solution 2:
Builtin to Windows is "tasklist /s remotepc"