I have this script:
Set WshShell = CreateObject("WScript.Shell")
dim a
a = "C:\Program Files (x86)\MyProgram\MyApplication.jar"
WshShell.Run "javaw -jar " & a
but when I execute, I got error message: "Error: Unable to access jarfile: C:\Program"
the problem is... my program path contain space(s). How to fix this?