Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 24, 2022 02:06 am GMT

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 "--------------------------------"

Original Link: https://dev.to/redhcp/get-all-processes-data-from-host-powershell-3b8c

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To