mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
13 lines
383 B
PowerShell
13 lines
383 B
PowerShell
rm temp.xlsx -ErrorAction Ignore
|
|
|
|
$data = invoke-sum (ps) company handles,pm,VirtualMemorySize
|
|
|
|
$c = New-ExcelChart -Title Stats `
|
|
-ChartType LineMarkersStacked `
|
|
-Header "Stuff" `
|
|
-XRange "Processes[Company]" `
|
|
-YRange "Processes[PM]","Processes[VirtualMemorySize]"
|
|
|
|
$data |
|
|
Export-Excel temp.xlsx -AutoSize -TableName Processes -Show -ExcelChartDefinition $c
|