Windows 中有哪些好的命令行实用程序可以监控进程?

Windows 中有哪些好的命令行实用程序可以监控进程?

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

答案1

PsList来自 SysInternals (现在归 Microsoft 所有) 的pstop

对于ps类似行为,只需:

pslist

对于top类似行为:

pslist -s

timeit来自 Windows Server 2003 资源工具包工具time

答案2

Windows 内置有“tasklist /s remotepc”

答案3

powershell 中没有这些吗?请参见此处(比较表)

答案4

Sysinternals 的 ProcessExplorer 令人印象深刻。

相关内容