Weazle Posted March 11, 2005 Posted March 11, 2005 Hello All,I have a small question.Tried to find it with the search button - but couldn't find it.When you create a batchfile, you can play with the ECHO command to show stuff on the screen.Example: ECHO Installation in progress.. Please Wait..Does anybody know how I can display such a screen with VBS fileso that I launch the Vbs, you get on screenLaunching Install..Checking Disk Space..Installation in Progress... Please Wait...Installation Done... Press Any Key to continue..I know you can use wscript.echo but that are message boxes and then the program will wait untill you press ok to go on.Thx in Advance
jdoe Posted March 11, 2005 Posted March 11, 2005 When you double-click a .VBS file, the default program started is WSCRIPT.EXEIf you want this script to run in a dos window, start your script with CSCRIPT.EXEThis way, wscript.echo will display what you want without waiting for user input.CSCRIPT.EXE file.vbsThat's it
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now