http://bugs.winehq.org/show_bug.cgi?id=58785 mata <sutupud(a)yahoo.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sutupud(a)yahoo.com --- Comment #7 from mata <sutupud(a)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' -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.