<# .SYNOPSIS write-blue.ps1 [] .DESCRIPTION Writes the given text in a blue foreground color. .EXAMPLE PS> .\write-blue.ps1 "Hello World" .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> param([string]$text = "") if ($text -eq "" ) { $text = read-host "Enter the text to write" } write-host -foregroundColor blue "$text" exit 0