Skip to content

Instantly share code, notes, and snippets.

@turibbio
Created August 18, 2015 16:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save turibbio/80d5f6e8255c39d468ad to your computer and use it in GitHub Desktop.
Save turibbio/80d5f6e8255c39d468ad to your computer and use it in GitHub Desktop.
Write-Host vs Write-Output
function Write-Messages
{
[CmdletBinding()]
param()
Write-Host "Host message"
Write-Output "Output message"
}
# Run with:
# Write-Messages | Out-File C:\Temp\log.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment