vote up 1 vote down star

Currently, WScript pops up message box when there is a script error. These scripts are called by other processes, and are ran on a server, so there is nobody to dismiss the error box.

What I'd like is for the error message to be dumped to STDOUT, and execution to return the calling process. Popping as a MSGBox just hangs the entire thing.

Ideas?

flag

53% accept rate

6 Answers

vote up 1 vote down check

This is how you should be running Script batch jobs:

cscript //b scriptname.vbs
link|flag
vote up 0 vote down

You haven't stated what language you're using. If you're using VBScript, you can write an error handler using the On Error... statement. If you're using JScript, you can use a try {} catch (x) {} block.

link|flag
vote up -1 vote down

If they are VBScript runtime errors then you can trap them.

...
On Error Goto FixIt
...

FixIt:
'Deal with Err.Description and Err.Number
Resume Next
link|flag
1  
VBScript doesn't support this on error goto handler construct – AnthonyWJones Oct 16 '08 at 15:02
vote up 1 vote down

don't do this:

vbscript: On error resume next

english: "when you have an error, ignore it and just keep going."

link|flag
vote up 0 vote down

Don't use WScript; use CScript. At the Windows command prompt, type the following to display help.

cscript //?
I suggest the following:
cscript //H:CScript
This will make CScript your default scripting interpreter. CScript prints messages to the console (i.e., stdout) as you desire. (It does not use dialog windows.) You may also want to try the //B switch, but I can't tell if that has to be run per-script or not. If it is a persistent, one-time switch like the //H switch is, then this may work for you; if not, you may need to modify all of your remote programs to include it. From the information you provided, I think just changing the default interpreter (//H) will do what you want.

You will also need to add some sort of error handling to keep the script from terminating on an error. In Visual Basic Scripting Edition, the easiest thing to do if you just want to ignore errors is to add the following to the top of your script.

On Error Resume Next
See http://msdn.microsoft.com/en-us/library/53f3k80h(VS.85).aspx for more information.

link|flag
vote up 0 vote down

Use WScript.Echo instead of MsgBox. And, run the script using CSCRIPT instead of WSCRIPT.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.