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