http://bugs.winehq.org/show_bug.cgi?id=15976
Summary: MS Exchange 2007 fails to install. Product: Wine Version: 1.1.8 Platform: Other URL: http://technet.microsoft.com/en- us/exchange/bb330851.aspx OS/Version: other Status: NEW Keywords: download, Installer Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: leslie_alistair@hotmail.com
Created an attachment (id=17166) --> (http://bugs.winehq.org/attachment.cgi?id=17166) WINEDEBUG=all
The setup fails to install and gives no error of failure.
Attached is a log of WINEDEBUG=all
I have tried to set Wine to win2003 or win2008 install dotnet 1.1 and 2.0 and overriding mscoree.dll
Still with no luck.
http://bugs.winehq.org/show_bug.cgi?id=15976
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |focht@gmx.net
--- Comment #1 from Anastasius Focht focht@gmx.net 2008-11-09 05:45:05 --- Hello,
the problem is most likely this sequence:
--- snip --- 0009:Call advapi32.LookupPrivilegeValueW(00000000,00402830,00571400) ret=0042845d 0009:trace:advapi:LookupPrivilegeValueW (null),L"SeAuditPrivilege",0x571400 0009:trace:advapi:LookupPrivilegeValueW (null) -> 00000000-00000015 0009:Ret advapi32.LookupPrivilegeValueW() retval=00000001 ret=0042845d 0009:Call advapi32.LookupPrivilegeValueW(00000000,0040280c,00571408) ret=0042845d 0009:trace:advapi:LookupPrivilegeValueW (null),L"SeBackupPrivilege",0x571408 0009:trace:advapi:LookupPrivilegeValueW (null) -> 00000000-00000011 0009:Ret advapi32.LookupPrivilegeValueW() retval=00000001 ret=0042845d 0009:Call advapi32.LookupPrivilegeValueW(00000000,004027dc,00571410) ret=0042845d 0009:trace:advapi:LookupPrivilegeValueW (null),L"SeChangeNotifyPrivilege",0x571410 0009:trace:advapi:LookupPrivilegeValueW (null) -> 00000000-00000017 0009:Ret advapi32.LookupPrivilegeValueW() retval=00000001 ret=0042845d 0009:Call advapi32.LookupPrivilegeValueW(00000000,004027ac,00571418) ret=0042845d 0009:trace:advapi:LookupPrivilegeValueW (null),L"SeCreateGlobalPrivilege",0x571418 0009:Ret advapi32.LookupPrivilegeValueW() retval=00000000 ret=0042845d 0009:Call KERNEL32.GetLastError() ret=00428470 0009:Ret KERNEL32.GetLastError() retval=00000521 ret=00428470 --- snip ---
and the reason is an off-by-one error in dlls/advapi32/security.c:LookupPrivilegeValueW
for( i=SE_MIN_WELL_KNOWN_PRIVILEGE; i<SE_MAX_WELL_KNOWN_PRIVILEGE; i++ )
vs.
#define SE_CREATE_GLOBAL_PRIVILEGE 30L #define SE_MAX_WELL_KNOWN_PRIVILEGE SE_CREATE_GLOBAL_PRIVILEGE
You might want to fix the conformance test too (exhibits the same error). And maybe some spelling stuff: SE_CHANGE_NOTIFY_PRIVILLEGE vs SE_CHANGE_NOTIFY_PRIVILEGE (global header and it's conformance test copy).
Regards
http://bugs.winehq.org/show_bug.cgi?id=15976
Alistair Leslie-Hughes leslie_alistair@hotmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED
--- Comment #2 from Alistair Leslie-Hughes leslie_alistair@hotmail.com 2008-11-10 15:13:39 --- Thanks Anastasius.
Patches have been accepted to correct this issue.
http://bugs.winehq.org/show_bug.cgi?id=15976
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #3 from Alexandre Julliard julliard@winehq.org 2008-11-21 10:32:09 --- Closing bugs fixed in 1.1.9.
http://bugs.winehq.org/show_bug.cgi?id=15976
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |d0ccdfbd4ff5c7febef926a2516 | |bb4871d43694a Component|-unknown |advapi32 Hardware|Other |x86 OS|other |Linux