Re: MSIEXEC: Make installation of InstMsiA.exe possible

2004-11-06 Thread Dmitry Timoshkov
Hans Leidekker [EMAIL PROTECTED] wrote: @@ -523,6 +524,11 @@ { InstallUILevel = INSTALLUILEVEL_BASIC|INSTALLUILEVEL_PROGRESSONLY; } + else if(!strcasecmp(argv[i]+2, b+!)) Please use lstrcmpiA instead of strcasecmp. A difference between unix system locale and current ANSI code page in

Re: MSIEXEC: Make installation of InstMsiA.exe possible

2004-11-06 Thread Hans Leidekker
On Saturday 6 November 2004 15:52, Dmitry Timoshkov wrote: + else if(!strcasecmp(argv[i]+2, b+!)) Please use lstrcmpiA instead of strcasecmp. A difference between unix system locale and current ANSI code page in Wine might lead to undesired side effects. Here's a patch relative to my

Re: MSIEXEC: Make installation of InstMsiA.exe possible

2004-11-06 Thread Tobias Burnus
Hello, Hans Leidekker wrote: I have an InstMsiA.exe that uses two undocumented msiexec command line parameters: /m and /D and uses an undocumented modifier (!) with the /q parameter. Our msiexec fails when it encounters these and responds with a usage message. For /m I found the following, don't