如何在PowerShell中获取内核模式时间和用户模式时间?

时间:2017-07-19 12:23:21

标签: windows powershell

我正在使用Windows 7.如何在PowerShell中查找进程的内核模式时间和用户模式时间?我能够获得进程名称和进程ID。

Pxy = arcsin((z2 - z1) / Sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2)

1 个答案:

答案 0 :(得分:1)

内核模式时间:

$proc.PrivilegedProcessorTime.TotalMilliseconds

用户模式时间:

$proc.UserProcessorTime.TotalMilliseconds

出于发现目的,您可以使用$proc | Get-Member枚举对象的(非隐藏)方法和属性,并使用$proc | Format-List *列出所有(非隐藏)属性及其值。

或者,您只需查看documentation

即可