vote up 2 vote down star

I need any tool or IDE environment to debug and test the vb scripts code. Please suggest me for any free one. My vb scripts are standalone (vbs extenstion).

Thanks

flag

70% accept rate

3 Answers

vote up 0 vote down check

Sadly not free....How to debug Windows Script Host, VBScript, and JScript files

link|flag
vote up 1 vote down

I think you'll have a hard time finding a free tool that supports real VBS debugging. But I've used this "poor man's technique" in the past. Create a variable at the beginning of your script

blnDebug=False

Then throughout your script add lines to echo what the script is doing or the value of different variables:

if blnDebug Then wscript.echo "Now starting script strFoo=" & strFoo

When you set blnDebug=True then all your debug messages will be written to the console (I always use CScript when running this). By adding these debug messages as you write your script, you can have debugging available simply by changing the bldDebug value.

Certainly commercial editors like PrimalScript include a debugger. SAPIEN also has a standalone debugger, http://www.primalscope.com/, that while not free is a relatively inexpensive option. You can download an eval copy to try it out.

link|flag
vote up 2 vote down

VBSEdit

Not free, but has an unlimited trial period with a nag screen.

link|flag

Your Answer

Get an OpenID
or

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