Hi I have for example two VB script:
Test1.vb Test2.vb
How to run Test2.vb from Test1.vb
Test2.vb location : C:\Program Files
Hi I have for example two VB script:
Test1.vb Test2.vb
How to run Test2.vb from Test1.vb
Test2.vb location : C:\Program Files
I think this would work:
Dim obj
Set obj = Wscript.CreateObject("WScript.Shell")
obj.Run "C:\Program Files\Test2.vbs"