echo
is an alias for Write-Output
, which writes to the Success output stream. This allows output to be processed through pipelines or redirected into files. Write-Host
writes directly to the console, so the output can’t be redirected/processed any further.