Forum Moderators: open
I already know how to launch a local exe, for example:
Set objApp = CreateObject("WScript.Shell")
objApp.Run "cmd /C CD C:\ & Program Files & SomeFolder & SETUP"
How can I launch a network exe?
[edit]doh! this is client side. that won't work! Do your intranet users have a network drive that's always mapped when logged in, like a public drive where the batch file could live? Or make a call to map a network drive before calling the cmd[/edit]
Do your intranet users have a network drive that's always mapped when logged in, like a public drive where the batch file could live?
The "net use" command is what you are looking for.
Type "net use /?" in CMD for more help.