21 Jan
2026
21 Jan
'26
1:45 p.m.
I doubt that native msiexec handles the command line like this. To avoid bash moving quotes you can pipe the command to cmd: ``` $ echo 'msiexec /i some.msi INSTALLDIR="C:\Path with spaces\data"' | wine cmd ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9943#note_127625