Try using this sub:
Sub Run(ByVal sFile, sArgs)
' Create a shell object
Dim shell
Set shell = CreateObject("WScript.Shell")
' Run the file
shell.Run Chr(34) & sFile & Chr(34) & " " & sArgs, 1, false
' Cleanup
Set shell = Nothing
End Sub
' Run a file like this:
Run "FILENAME", "ARGUMENTS"
It should be able to launch the file. Hope it works for you!
Sincerely yours,
- bilde2910
If a post is helpful to you or solves a problem, remember to mark it as answer, propose it as answer or vote up.
Check out my development so far!