mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
11 lines
456 B
PowerShell
11 lines
456 B
PowerShell
$file = ".\conditionalTextFormatting.xlsx"
|
|
rm $file -ErrorAction Ignore
|
|
|
|
Get-Service |
|
|
Select Status, Name, DisplayName, ServiceName |
|
|
Export-Excel $file -Show -AutoSize -AutoFilter -ConditionalText $(
|
|
New-ConditionalText stop
|
|
New-ConditionalText runn darkblue cyan
|
|
New-ConditionalText -ConditionalType EndsWith svc wheat green
|
|
New-ConditionalText -ConditionalType BeginsWith windows darkgreen wheat
|
|
) |