rockofvictory
IS-IT--Management
I had received some help a while ago on a different website on how to open multiple applications with one vbs shortcut. I don't know vbs, so hopefully this will be an easy one for you guys and gals:
What does ",1,false" mean? I would like a delay between opening files, if possible. How would I do that?
~
Code:
set sh = CreateObject("WScript.Shell")
sh.Run """iexplore",1,false
sh.Run """explorer",1,false
sh.Run """C:\Program Files\Radmin\radmin.exe",1,false
set sh = nothing
What does ",1,false" mean? I would like a delay between opening files, if possible. How would I do that?
~