Powershell redirect output to file

PowerShell passes the results of one cmdlet as an argument into a second cmdlet by using the pipe “ | ” symbol. Unlike UNIX and BATCH scripting, the result is a complete object, not just text Useful for chaining multiple tasks into a single operation Use with formatting cmdlets • Sort-Object, Format-Table, ConvertTo-Html, Set-Content ................
................