ps 后得到workingset64的值怎么转换为任务管理器那样看到的值


PowerShell交流中心分类: 变量-函数-脚本-条件-循环-参数ps 后得到workingset64的值怎么转换为任务管理器那样看到的值
0
873792861 asked 8年 ago

比如:任务管理器里IE是499.6M

任务管理器

PS C:\Users\pps87> $p=ps *iexp* |Measure-Object -Property WorkingSet64 -Sum
PS C:\Users\pps87> $p.Sum/1024
115826

单单这样不对,要怎么算?

 

0 Answers
0
Mooser Lee 管理员 answered 8年 ago
873792861 replied 8年 ago

谢谢了!