Set oShell = CreateObject("Wscript.Shell"
oShell.Run ("c:\Program Files\TestFolder\test.exe"
The problem here is that the gap between 'Program Files' is causing an error. If I were to run this 'test.exe' file in a folder with one name, like so:
oShell.Run ("c:\Work\TestFolder\test.exe"
The statement executes without a problem.
I want to stick with 'Program Files' in my path. Is there any way possible I can use to make this work? Maybe place extra quotes? Let me know folks....thanks a lot
Dude