我正在使用Windows 7.如何在PowerShell中查找进程的内核模式时间和用户模式时间?我能够获得进程名称和进程ID。
Pxy = arcsin((z2 - z1) / Sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2)
答案 0 :(得分:1)
内核模式时间:
$proc.PrivilegedProcessorTime.TotalMilliseconds
用户模式时间:
$proc.UserProcessorTime.TotalMilliseconds
出于发现目的,您可以使用$proc | Get-Member
枚举对象的(非隐藏)方法和属性,并使用$proc | Format-List *
列出所有(非隐藏)属性及其值。
或者,您只需查看documentation。
即可