I’ve seen a number of scripts that are using Write-Host to display output from their scripts.

For example:

Write-Host "SomeValue = $MyValue"

## So What?




I'll tell you what.. If I want to do anything with that output other than look at it in the console (or perhaps a shell transcript), it gets me nothing.  



[I'm not going to rehash why our scripts should return objects rather than text, as I covered that in a previous post](/blog/2011/04/output-optionsuse-objects). 



## This is Important!




If you want to be able to do anything at all with your output (other than look at it, you need to output an object (remember, even text is treated as an object to PowerShell).  Write-Host is quite inviting, but with a simple change to Write-Output, we'll still see the text on our console, but the resulting output can be piped or redirected to a file.
## Isn't Write-Host Just Like "Echo"?




One of the common aliases from the DOS and CMD.exe world is "echo".  That's actually an alias for Write-Output!



After we get to writing output, it'll only be a short time before you start moving to returning structured objects that the other built in commands can format, display, and output in any way necessary.