highspeed1
Goto Top

Powershell - Format-Table farbig ausgeben

Hallo Forum.

Ich versuche den Befehl Format-Table farbig auszugeben. Leider sind meine Versuche nicht von Erfolg gekrönt...

Diese Ausgabe ist zwar richtig aber halt nicht farbig.
$CompareList = @()
$CompareList += New-Object psobject -Property @{Old_Text="1";New_Text="#1#"}  
$CompareList += New-Object psobject -Property @{Old_Text="2";New_Text="#2#"}  

$CompareList | Format-Table Old_Text,New_Text

1

Und hier kommt nur Blödsinn raus.
$CompareList = @()
$CompareList += New-Object psobject -Property @{Old_Text="1";New_Text="#1#"}  
$CompareList += New-Object psobject -Property @{Old_Text="2";New_Text="#2#"}  

$CompareList | Format-Table Old_Text,New_Text | foreach {Write-Host [string]$_ -F Magenta}

2

Hat jemand von euch eine Idee?

Gruß
Christoph

Content-ID: 8046816577

Url: https://administrator.de/contentid/8046816577

Ausgedruckt am: 21.11.2024 um 21:11 Uhr

Kraemer
Lösung Kraemer 04.08.2023 um 11:51:00 Uhr
Goto Top
HighSpeed1
HighSpeed1 04.08.2023 um 15:08:52 Uhr
Goto Top
Danke für die schnelle Hilfe.