[users at bb.net] How do you call a vbs script

Vladimir Rutsky rutsky.vladimir at gmail.com
Mon Apr 25 20:27:07 UTC 2016


Hi!

On Mon, Apr 25, 2016 at 4:43 PM, honas grael <honasgraeymael at gmail.com> wrote:
> I've got a Visual Basic Shell script that is used during a build. Its not an
> executable, I'd like to call it from one of the buildsteps and I'm not sure
> how this is done.
> Anyone used .vbs files from a build step?
> What should I be aware of?

You need to use 'cscript.exe' interpreter to start VBS files on Windows:

    f.addStep(steps.ShellCommand(command=["cscript.exe",
"path/to/your_script.vbs"]))

--
Vladimir Rutsky


More information about the users mailing list