Is there a way for viewing CPU and memory utilization in percentage for all running processes in PowerShell
?
I have tried the following:
Get-Process | %{"Process={0} CPU_Usage={1} Memory_Usage={2}" -f $_.ProcessName,[math]::Round($_.CPU),[math]::Round($_.PM/1MB)}
Along with it I have parsed this information and calculated memory usage percentage from total memory, but couldn't get the same for CPU since by this command it show CPU time division in processes not utilization per se.
Used the following commands for total memory and total cpu utilization:
TOTAL PHYSICAL MEMORY
Get-WmiObject Win32_OperatingSystem | %{"{0}" -f $_.totalvisiblememorysize}
TOTAL CPU UTILIZATION
Get-WmiObject Win32_Processor | Select-Object -expand LoadPercentage
Any help would be appreciated. I need it in the following format:
PROCESS=process_name CPU=percent_cpu_utilization_by_process MEMORY=percent_memory_utilization_by_process
You can use the
WMI
objectWin32_PerfFormattedData_PerfProc_Process
to collect all this data.If you need the memory in a percentage of total memory you can add the following at the start to get the total RAM in the system.
Then change the
WorkingSetPrivate
calculation to the followingNote the CPU stat in this
WMI
object is rounded to the nearest present and I have calculated the current used memory in Megabytes. For more information on this class see this link.Did you try Get-Counter cmdlet?
The Get-Counter cmdlet allows you to get performance counter data for local/remote machines.
Have a look at the blog for more details:
http://www.adminarsenal.com/admin-arsenal-blog/powershell-get-cpu-usage-for-a-process-using-get-counter/