https://bugs.winehq.org/show_bug.cgi?id=10913
François Gouget fgouget@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED
--- Comment #14 from François Gouget fgouget@codeweavers.com --- Actually this is fixed. You have to escape the double-quotes in cmd too:
This works:
$ wine cmd ...> start "foo" regedit
It results in cmd running the following command through CreateProcessW() as can be seen from the WCMD_start() code in programs/cmd/builtins.c.
cmdline=L"C:\windows\command\start.exe \"foo\" regedit"