Skip to content

Instantly share code, notes, and snippets.

@mallibone
Created February 5, 2017 13:29
Show Gist options
  • Save mallibone/b039ac701ac7cafee6be7ac3e9c19d97 to your computer and use it in GitHub Desktop.
Save mallibone/b039ac701ac7cafee6be7ac3e9c19d97 to your computer and use it in GitHub Desktop.
Param(
[string]$Message,
[string]$SecondMessage,
[bool]$PrintItYellow
)
if($PrintItYellow)
{
Write-Host "$Message $SecondMessage" -ForegroundColor "Yellow"
}
else
{
Write-Host "$Message $SecondMessage"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment