In PowerShell how to capture error, warning, write-host output into a single file?
When I execute the external command/ write-warning/ write-error/ write-host I need all the information to be captured in a file.
when I redirect the write-error to a log file it will not show the same content as it's been displayed on the console. It will have some other information which I don't need.
Is it possible to prefix error with ERROR: , warning with WARN: in the log file?