Currently, JetPatch does not natively support VBScripts. As a workaround, you can call a VBScript from a Windows batch script. See the following example:
@echo off
@echo Msgbox("hello world") > c:\\tmp
vbscript.vbs
cscript.exe c:\\tmp
vbscript.vbs
del “c:\\tmp
vbscript.vbs”
The content of the VBScript has to be written instead of Msgbox("hello world") …
Comments
0 comments
Please sign in to leave a comment.