Solved
Forum Discussion
- karkadilValued ContributorThe simplest way is using WScript.Shell
Set ws = Sys.OleObject("WScript.Shell")
ws.Run("c:\somefile.vbs")- jloyzagawhContributor
how would I code the call in jscript?
- HKosova
Alumni
jloyzagawh wrote:
how would I code the call in jscript?
var oShell = Sys.OleObject("WScript.Shell"); oShell.Run("C:\\MyFolder\\MyScript.vbs");
- coplin_geoffreyNew ContributorThank you! That was helpful information. I use external vbscript all the time.