jl66
asked on
How to suppress the MS version lines when running vbs?
How not to show the following lines when executing a VB script?
"Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved."
"Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved."
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Note the command lines are shown as for a CLI, i.e. typing cmd in the run dialog on the start menu followed by entering the commands therein .. and whilst I assumed that awareness ... better to precise!
Chris
Chris
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks alot for the tips
Just one other point, you could also do:
CSCRIPT //NOLOGO //S
and that will save the NOLOGO option for that user for all future uses of CSCRIPT.
~bp
CSCRIPT //NOLOGO //S
and that will save the NOLOGO option for that user for all future uses of CSCRIPT.
~bp
wscript scriptname.vbs
Chris