How would I place the quotes (single, double, triple) within the following statement?
objShell.Run "cmd.exe /c """ & "start """installer""" & "/b /high /wait" & "msiexec /x " & {application_uninstall_string} & " /l*v """ &"%temp%\logfile.log""" & " /norestart /qb-!"
As you can see, it is an attempt to run the following command:
start "installer" /b /high /wait msiexec /x "{application_uninstall_string}" /l*v "%temp%\logfile.log" /norestart /qb-!
It seems that no matter how I try to arrange the quotes, it always fails. Thanx.