mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
8 lines
187 B
PowerShell
8 lines
187 B
PowerShell
# Get only processes hat have a company name
|
|
# Sum up PM by company
|
|
# Show the Pie Chart
|
|
|
|
PieChart -Title "Total PM by Company" `
|
|
(Invoke-Sum (Get-Process|Where company) company pm)
|
|
|