Using the built in Object Echo you can quickly and easily display information to your user. Unlike the Popup Object, using Echo can display information in both CScript and WScript.
Use of Echo is simple, so I will get right into a couple of Examples.
// a must!
WScript.Echo("Hello World");
// on two lines.
WScript.Echo("Hello\nWorld");
// using a variable.
var msg = "Hello World";
WScript.Echo( msg );
// using a variable and a string
WScript.Echo( msg + "\nGoodbye World");
// Finish
WScript.Echo("Finished!");