mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-10 05:13:49 +00:00
16 lines
370 B
PowerShell
16 lines
370 B
PowerShell
$RandomStyle = {
|
|
param(
|
|
$workSheet,
|
|
$totalRows,
|
|
$lastColumn
|
|
)
|
|
|
|
2..$totalRows | ForEach-Object{
|
|
Set-CellStyle $workSheet $_ $LastColumn Solid (Write-Output LightGreen Gray Red|Get-Random)
|
|
}
|
|
}
|
|
|
|
Get-Process |
|
|
Select-Object Company,Handles,PM, NPM|
|
|
Export-Excel $xlfile -Show -AutoSize -CellStyleSB $RandomStyle
|