Write-Red
Writes text in a red foreground color
param([string]$text = "")
if ($text -eq "" ) { $text = read-host "Enter the text to write" }
write-host -foregroundcolor red "$text"
exit 0 # successSpecifies the text to write
Writes text in a red foreground color
param([string]$text = "")
if ($text -eq "" ) { $text = read-host "Enter the text to write" }
write-host -foregroundcolor red "$text"
exit 0 # successSpecifies the text to write