http://bugs.winehq.org/show_bug.cgi?id=58785
mata sutupud@yahoo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |sutupud@yahoo.com
--- Comment #7 from mata sutupud@yahoo.com --- The command you seem to execute would be interpreted by the shell as:
wine "Sam " & " Max Hit the Road.exe"
So first it tries to launch a program called "Sam " through wine as background job because of the &, which fails and explains the logs seen from wine. Then it tries to execute " Max Hit the Road.exe" from the path, which of course fails too.
So the & needs to be escaped too, or better just quote the whole command:
wine 'Sam & Max Hit the Road.exe'