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?

link|improve this question
Sounds like this Belongs on serverfault. – Alex B May 15 '09 at 18:16
feedback

6 Answers

up vote 7 down vote accepted

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.

link|improve this answer
feedback

Builtin to Windows is "tasklist /s remotepc"

link|improve this answer
outstanding :) +1 – ojblass May 15 '09 at 21:34
How did I ever miss this command? – 20th Century Boy May 20 '09 at 2:11
feedback

Doesn't powershell has some of those ? See here (comparison table)

link|improve this answer
feedback

Nothing important

link|improve this answer
feedback

Cygwin has 'time', but no 'top' and its 'ps' looks lame.

link|improve this answer
feedback

ProcessExplorer by Sysinternals is very impressive.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.