如何将进程信息(包括 CPU 使用率)保存到 txt?

如何将进程信息(包括 CPU 使用率)保存到 txt?

我在 Windows Server 2012 R2 上,我想将所有正在运行的进程的详细信息(包括 RAM、CPU 等)保存到文本文档中。有什么技巧吗?我快速搜索了一下,发现可以使用 cmd 工具中的“tasklist”获取进程信息,但其中没有列出 CPU 使用情况

答案1

这个封闭式问题中提到了答案

https://stackoverflow.com/questions/14215756/windows-command-for-cpu-utilization-for-particular-service

wmic path Win32_PerfFormattedData_PerfProc_Process get Name,PercentProcessorTime


C:\> wmic path Win32_PerfFormattedData_PerfProc_Process
get Name,PercentProcessorTime | findstr /i /c:chrome
chrome                  24
chrome#1                0
chrome#2                0
chrome#3                0

他提到

https://stackoverflow.com/questions/206805/tasklist-cpu-usage

相关内容