我知道 Windows 相当于“ps aux”tasklist
在我的 win10 上运行良好
per什么是“wc -l”的 Windows 等价物?Windows 等效wc -l
于find /c /v ""
.
当我尝试将它们结合在一起时,我得到了
FIND:参数格式不正确
如何使用powershell获取win10上运行的进程数?
我知道 Windows 相当于“ps aux”tasklist
在我的 win10 上运行良好
per什么是“wc -l”的 Windows 等价物?Windows 等效wc -l
于find /c /v ""
.
当我尝试将它们结合在一起时,我得到了
FIND:参数格式不正确
如何使用powershell获取win10上运行的进程数?
(Get-Process).Count
并且,作为奖励:
(Get-Process|Select-Object -ExpandProperty Threads).Count
在 CMD 中(以管理员身份)运行它:
powershell "(Get-Process|Select-Object -ExpandProperty Threads).Count"
示例输出:
信用:哈里姆
更多信息请访问https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-process?view=powershell-7.2