mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
18 lines
695 B
PowerShell
18 lines
695 B
PowerShell
try {Import-Module $PSScriptRoot\..\..\ImportExcel.psd1} catch {throw ; return}
|
|
|
|
#Get rid of pre-exisiting sheet
|
|
$xlSourcefile = "$env:TEMP\ImportExcelExample.xlsx"
|
|
Write-Verbose -Verbose -Message "Save location: $xlSourcefile"
|
|
Remove-Item $xlSourcefile -ErrorAction Ignore
|
|
|
|
$data = Invoke-Sum -data (Get-Process) -dimension Company -measure Handles, PM, VirtualMemorySize
|
|
|
|
$c = New-ExcelChartDefinition -Title "ProcessStats" `
|
|
-ChartType LineMarkersStacked `
|
|
-XRange "Processes[Name]" `
|
|
-YRange "Processes[PM]","Processes[VirtualMemorySize]" `
|
|
-SeriesHeader "PM","VM"
|
|
|
|
$data |
|
|
Export-Excel -Path $xlSourcefile -AutoSize -TableName Processes -ExcelChartDefinition $c -Show
|