Created by: levrik
-
powershell -Command "Get-Process | Select-Object Path": ~1300ms (current implementation) -
Get-Process | Select-Object Pathon already running PowerShell daemon/agent: ~300ms (implementation in #2711) -
wmic process where "executablepath is not null" get executablepath: ~110ms (this implementation)
For comparison on other platforms:
-
ps xon macOS: ~60ms