I need some help trying to launch an application and pass a file name to it
for viewing when opened
the "cmd" is correctly capturing the arguments and application path, but
does not open the application
------ code -----
<SCRIPT Language="VBScript">
Dim Args, FileName,vApp,cmd
Set WshShell = CreateObject("WScript.Shell")
Args = Split(objHTAGetTools.commandLine, chr(34))
FileName = Trim(Args(1))
vApp="C:\Progra~1\Micros~1\v0.6.812\WebMatrix.exe"
cmd = "cmd /c " & " """ & vApp & """ " & " """ & FileName & """ "
'msgbox cmd
Call WshShell.Run (cmd , 1, TRUE)
...