Windows 中有哪些好的命令行实用程序来监视进程?

ojb*_*ass 4 windows monitoring

我希望在 Windows 上拥有 ps、top 和 time,以便从远程 shell 监视 Windows 上开发的 C++ 应用程序的性能。这些都可用吗?

小智 7

PsList来自 SysInternals(现在归微软所有)用于pstop.

对于ps类似行为,只需:

pslist
Run Code Online (Sandbox Code Playgroud)

对于top类似行为:

pslist -s
Run Code Online (Sandbox Code Playgroud)

timeit来自 Windows Server 2003 Resource Kit Tools for time.


小智 5

Windows 内置的是“tasklist /s remotepc”