I think I get you. In vbs, you use the print command (forgive me if im wrong-my vbs knowledge is minimal). I have done a fair bit of batch coding. A good batch (in case you are un-aware) always starts off with:
@echo off
cls
@ echo off means do not display anything unless I tell you to.
cls means clear screen.
To make it show text on the screen, type:
echo (text to be displayed)
As soon as you press enter, it will stop displaying.
Another useful command to know is the REM command (remark).
This means do not execute the following: and is used in the same way as echo tio not display or run. Or did you know that already?
Enjoy your batch coding.
Also, as far as im aware, there is no such thing as a vbs to bat converter, but I know, and have used, bat to exe converter. Just make sure you back up the batch file before converting!
Good luck.
Shane