vote up 0 vote down star

How do I get a vbscript to run another vbscript?

Id imagine its only a few lines of code but not tried doing this before, nothing is passed between the 2, one just needs to call/run the other.

For examples the script being run is called TestScript.vbs, the other script for it to call/run would be called Secondscript.vbs, both of which are located in C:\Temp.

Thanks Mark

flag

you can do it by using .bat – UK Nov 6 at 9:30
I know that its do able with a .bat but is there not also a way to do it within the actual script? – Mark Nov 6 at 10:26

1 Answer

vote up 3 vote down check

See if the following works

Dim objShell
Set objShell = Wscript.CreateObject("WScript.Shell")

objShell.Run "TestScript.vbs" 

objShell = Nothing
link|flag
Tried this, variable undefined, do I need to add a declaration for it as well? – Mark Nov 6 at 10:28
Ignore my original response - it was garbage. Hopefully the above will solve your issue. – Martin Nov 6 at 10:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.