debugging - Visual Studio 2013 and VB Scripts -
I was thinking that Visual Studio 2013 can compile and debug VBScript files? If someone knows, please tell me how to
Thank you for your time.
Firstly VBScript is an interpreted language and does not need to be compiled.
But yes, you can debug your VBS201 file inside VS2013. Just open the file that you want to debug with VS 2013, under "Tools / External Tools" you must register Windows Script Host (CScript.XA or WScript.exe) with some startup parameters: < Pre> To start, debugger, just click on "Tools / Cscript Debug" VS JIT Debugger asks you, the debugger you want to use. Just choose your * .vbs file and click Yes. Sometimes this is a little buggy but it works; -) title: cscript debug command: c: \ windows \ system32 \ cscript.exe logic: // nologo // X $ (muddy) initial directory: $ (itemdir) check "use the output window" press the OK button
Comments
Post a Comment