相当于 Windows 上的 /proc/pid/status

相当于 Windows 上的 /proc/pid/status

我在 Linux 上使用 /proc/pid/status |grep VmRSS 来找出特定进程的内存使用情况。

在 Windows 上可以做同样的事情吗?

答案1

tasklist /FI "PID eq ABCD" /FO csv- 显示进程的基本信息;您可以通过管道findstr获取内存的行/字符串

答案2

我认为 Sysinternals 工具列表可能会对你有帮助。

参考:列表

答案3

如果您想查看进程的内存使用情况,您可以通过批处理文件运行以下脚本;以 powershell.exe 为例:

@echo off
for /f "tokens=5 delims= " %%A in ('tasklist /NH /FI "ImageName Eq powershell.exe"') do (
    echo %%A K
)

相关内容