I'm calling VBScripts from inside of a VBScript and I want their console output to appear in the window from which I'm calling them. So when I have this code
WScript.Stdout.WriteLine( "Checking out unit tests" )
ObjWshShell.Run "%comspec% \c checkoutUnitTests.vbs", 0, True
the the only output I see is
Checking out unit tests
when I want to see all the output from checkoutUnitTests.vbs
concatenated onto that output in the same window. How do I do this?