Richard Cohen schrieb:
The latest version of Wine does have problems with InstMsiA.exe, but I haven't seen this one. I've updated the Wiki page at http://wiki.winehq.com/NativeMsi . Does that work for you?
No, the error still occurs. I have to remove the symbolic link to msiexec.exe.so in the windows\system dir before starting InstMsiA.exe - and maybe restoring it after, like: --------------- schnipp --------------- cd ~/.wine/drive_c/windows/system if test -e msiexec.exe" ;then mv msiexec.exe msiexec.exe.wine fi WINEDLLOVERRIDES="msiexec.exe=n,b" wine InstMsiA.exe if test -e msiexec.exe.wine ;then if test -e msiexec.exe ;then mv msiexec.exe msiexec.exe.windows fi mv msiexec.exe.wine msiexec.exe fi --------------- schnapp ---------------
Sven