Prints message onto script output.
Advertisement
echo <message>
echo Uploading all report files...
When converting script to .NET Assembly, map echo command to any reporting functionality of your runtime environment. In .NET framework, you can use System.Console.WriteLine. In PowerShell, you can use also Write-Host cmdlet.
