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.
Und hier kommt nur Blödsinn raus.
Hat jemand von euch eine Idee?
Gruß
Christoph
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
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}
Hat jemand von euch eine Idee?
Gruß
Christoph
Please also mark the comments that contributed to the solution of the article
Content-ID: 8046816577
Url: https://administrator.de/contentid/8046816577
Printed on: October 11, 2024 at 15:10 o'clock
2 Comments
Latest comment