DEV Community

redhcp
redhcp

Posted on

3 2

Get ALL processes data from host powershell

Get ALL Process data from host powershell, run next command:

Write-Host "--------------------------------"
Write-Host "Computername:" $env:COMPUTERNAME -foregroundcolor "green"
get-process  | ft @{Label="NPM(K)";Expression={[int]($_.NPM/1024)}}, 
                  @{Label="PM(K)";Expression={[int]($_.PM/1024)}},
                  @{Label="WS(K)";Expression={[int]($_.WS/1024)}},
                  @{Label="VM(M)";Expression={[int]($_.VM/1MB)}},                                                                      
                  @{Label="CPU";Expression={if ($_.CPU -ne $()) { $_.CPU.ToString("N")}}}, Id, MachineName, ProcessName ,@{Label="path";Expression={($_.path)}},-auto 
Write-Host "--------------------------------"

Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more