clauschmidt Report post Posted 03/15/2011 08:02 PM Hello, During then script execution I need to call another vbs. How can I do this? Regards Share this post Link to post
SupportTeam Report post Posted 03/16/2011 02:22 AM You need to call another .VBS file from a VBScript module? You can just invoke the Cscript.exe with the path to your VBScript as parameter. eg: Dim strFileName strFileName = Chr(34) & "C:\Program Files\MyFolder\MyScript.vbs" & Chr(34) Set WSHShell = CreateObject("WScript.Shell") WSHShell.Run "cscript " & strFileName, , True Share this post Link to post