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
|
|
|
|
|
|
|
Sadly not free....How to debug Windows Script Host, VBScript, and JScript files |
|||
|
|
|
|
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. |
||
|
|
|
|
Not free, but has an unlimited trial period with a nag screen. |
||
|
|