http://bugs.winehq.org/show_bug.cgi?id=10787
Summary: Can't install 3ds max due to .net and direct x Product: WineHQ Apps Database Version: unspecified Platform: PC-x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: website-bugs AssignedTo: wine-bugs@winehq.org ReportedBy: josephjacir@hotmail.com
Created an attachment (id=9650) --> (http://bugs.winehq.org/attachment.cgi?id=9650) log file output by 3ds max 9 installer on install abort.
I'm new at reporting bugs so sorry if I've done anything incorrectly. Anyway:
I'm trying to install 3ds max 9 - the install invariably aborts when it gets to the step where it tries to install .NET . Before it gets this far, it also tries to install Direct X 9 but this failure doesn't cause it to abort. I've attached the log that max output in C:\windows\temp\3dsMax9.log
http://bugs.winehq.org/show_bug.cgi?id=10787
L. Rahyen mail@science.su changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mail@science.su
--- Comment #1 from L. Rahyen mail@science.su 2007-12-15 21:30:33 --- I can confirm this problem - 3ds max 9 doesn't install on current WINE.
By the way, this bug has wrong product and wrong component: bug is in WINE so product should be "Wine" not "WineHQ Apps Database". And component should be wine-misc if you unsure where is the exact cause of the bug.
http://bugs.winehq.org/show_bug.cgi?id=10787
Vitaliy Margolen vitaliy@kievinfo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Depends on| |10467, 10601 Component|website-bugs |wine-dotnet Keywords| |Installer Product|WineHQ Apps Database |Wine
--- Comment #2 from Vitaliy Margolen vitaliy@kievinfo.com 2007-12-15 22:05:18 --- Not appDB bug. Author specify Wine version. At present .net 2.0 does not install/work on Wine as-is.
http://bugs.winehq.org/show_bug.cgi?id=10787
Lei Zhang thestig@google.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1
--- Comment #3 from Lei Zhang thestig@google.com 2007-12-20 12:28:02 --- confirmed by comment 1 again, please specify wine version
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #9650|text/x-log |text/plain mime type| |
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #9650|text/plain |text/x-log mime type| |
http://bugs.winehq.org/show_bug.cgi?id=10787
Joseph josephjacir@hotmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |0.9.53.
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000@yahoo.co.uk
--- Comment #4 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-01-13 13:45:19 --- Joseph, could you provide a downloadlink for this version of 3ds max
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #5 from Joseph josephjacir@hotmail.com 2008-01-13 19:06:19 --- http://usa.autodesk.com/adsk/servlet/mform?id=10083915&siteID=123112 This is the official site. Unfortunately you have to sign up. I believe it will also give you the latest version, which is not necessarily always going to be 9.
However, the software is available to download at no charge; it comes with a 30 day trial. Here is another download source I've found which hosts version 9. http://www.soft32.com/download_81704.html
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #6 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 11:34:43 --- Created an attachment (id=10828) --> (http://bugs.winehq.org/attachment.cgi?id=10828) GUI
Right, this is how far i got with the app, the GUI is up and running, but the main window doesn't refresh. However, it might be a problem with my graphics card, as i got a scaring "err:iPixelFormat=0" in my console.
Anyway, what i did is _first_ install .net 2.0. Then the installer runs apparently into a bug in msi. I used stupid hack below to let the installer finish. Then using the howto for .net apps ( http://appdb.winehq.org/objectManager.php?sClass=version&iId=3754&iT... ) i started the application. Then it ran into a bug into comctl32. Using native comctl32 (and riched20 for another issue) the main window came up. Needs more testing (and preferably by someone who knows how the application works)
diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 2efcbbb..60cf475 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -845,9 +845,9 @@ static UINT ITERATE_Actions(MSIRECORD *row, LPVOID param) if (rc == ERROR_FUNCTION_NOT_CALLED) rc = ERROR_SUCCESS;
- if (rc != ERROR_SUCCESS) + if (rc != ERROR_SUCCESS) {rc = ERROR_SUCCESS; ERR("Execution halted, action %s returned %i\n", debugstr_w(action), rc); - +} return rc; }
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|mscoree |msi Summary|Can't install 3ds max due to|Can't install 3ds max |.net and direct x |
--- Comment #7 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 11:42:36 --- I'm changing component. On a complete fresh .wine, using current git, it passes .net and directx installation fine, and then fails installing the actual application:
fixme:advapi:LookupAccountNameW (null) L"louis" (nil) 0x34f7fc (nil) 0x34f800 0x34f7f4 - stub fixme:advapi:LookupAccountNameW (null) L"louis" 0x124dc8 0x34f7fc 0x124d20 0x34f800 0x34f7f4 - stub err:msi:custom_get_thread_return Invalid Return Code 1615 err:msi:ITERATE_Actions Execution halted, action L"SetEULA_COUNTRYFromUserLanguageID" returned 1603
It then poops up a MessageBox Fatal Error
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #9650|text/x-log |text/plain mime type| |
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #9650|text/plain |text/xlog mime type| |
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Can't install 3ds max |Can't install 3ds max 9
--- Comment #8 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 11:44:48 --- it's about version 9
http://bugs.winehq.org/show_bug.cgi?id=10787
Dan Kegel dank@kegel.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |dank@kegel.com
--- Comment #9 from Dan Kegel dank@kegel.com 2008-02-17 11:51:44 --- Louis, for completeness, can you post the filename, size, and sha1sum of the trial download?
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- URL| |http://www.soft32.com/downlo | |ad_81704.html
--- Comment #10 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 12:12:28 --- Dan, it was from the download link above (if i remember correctly)
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #11 from James Hawkins truiken@gmail.com 2008-02-17 12:26:35 --- Please attach a +msi,+msidb log. Apparently this version isn't available anymore.
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #12 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 13:15:42 --- requested log is at http://download.yousendit.com/54F888414B25D65F
. looks like the downloadlink i posted is indeed not valid anymore. You can still get the trial from autodesk.com i guess, but then you have to sign up
PS, the log is rather large. The error message appeared when this went into the console: err:msi:ITERATE_Actions Execution halted, action L"SetEULA_COUNTRYFromUserLanguageID" returned 1603
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #13 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 13:18:44 --- sigh, all too hasty. It's available here:
http://download.yousendit.com/7CAA48CD7620EC41
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #14 from James Hawkins truiken@gmail.com 2008-02-17 13:19:48 --- 3ds max 9 is not available from the autodesk site anymore.
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #15 from James Hawkins truiken@gmail.com 2008-02-17 13:25:08 --- Simple enough, we need to set the UserLanguageID property. I'll have a patch ready shortly.
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #16 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 13:31:29 ---
Simple enough, we need to set the UserLanguageID property. I'll have a patch ready shortly.
Cool! I'll remove the downloadlink above, as it doesn't seem to work anymore (i get FORBIDDEN now). I also signed up at autodesk, but there's only 3ds2008 trial available. I'll test that one soon
http://bugs.winehq.org/show_bug.cgi?id=10787
James Hawkins truiken@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |snoski3@yahoo.com
--- Comment #17 from James Hawkins truiken@gmail.com 2008-02-17 14:02:41 --- *** Bug 6628 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=10787
Dan Kegel dank@kegel.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download
--- Comment #18 from Dan Kegel dank@kegel.com 2008-02-17 14:21:13 --- Found new download link: http://3dsmaxtrial.autodesk.com/3dsmax9trial/3dsmax9Trial.exe size: 618317367 date: 2007-08-22 sha1sum: 07dc41ebf7de1bad5eecbbae3d5fa7d12baeadb5
Does that match what you have, Louis?
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #19 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 15:57:55 ---
Does that match what you have, Louis?
Yes, that's the one. I can also confirm that James' patch from wine-patches fixes the bug. Only annoying thing is , that it takes a very long time (about 5 min) for the first installation window to come up. I'm not sure what the reason for this is
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #20 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-17 16:00:22 --- Oops, i was too optimistic: err:msi:ITERATE_StartService Failed to start service L"mi-raysat_3dsmax9_32" err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned 1627 err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1627
Looks like it still fails in the end. I'll wait until James' patch is in git, and then retest
http://bugs.winehq.org/show_bug.cgi?id=10787
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |focht@gmx.net
--- Comment #21 from Anastasius Focht focht@gmx.net 2008-02-17 17:04:12 --- Hello,
--- quote --- Only annoying thing is , that it takes a very long time (about 5 min) for the first installation window to come up. I'm not sure what the reason for this is --- quote ---
if you experience long wine startup delays after .NET 2.0 got installed you're probably running into .NET CLR service install (msi) bug, http://bugs.winehq.org/show_bug.cgi?id=3972#c19 (use http://bugs.winehq.org/attachment.cgi?id=9285). It's annoying to re-apply such kind of patches every time because the bug is easy to fix (Msi owner James?).
--- snip --- err:msi:ITERATE_StartService Failed to start service L"mi-raysat_3dsmax9_32" err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned 1627 err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1627 --- snip ---
My educated guess: http://bugs.winehq.org/show_bug.cgi?id=8466
Try my patch from http://bugs.winehq.org/show_bug.cgi?id=11420 (http://bugs.winehq.org/attachment.cgi?id=10552) and see if it helps.
If yes, AJ should really fix this issue because it affects several major apps/installers.
Regards
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #22 from James Hawkins truiken@gmail.com 2008-02-17 17:54:54 --- (In reply to comment #21)
if you experience long wine startup delays after .NET 2.0 got installed you're probably running into .NET CLR service install (msi) bug, http://bugs.winehq.org/show_bug.cgi?id=3972#c19 (use http://bugs.winehq.org/attachment.cgi?id=9285). It's annoying to re-apply such kind of patches every time because the bug is easy to fix (Msi owner James?).
I don't own MSI. My bug priorities are determined by my boss, so I'll get around to it if I ever get the time. Comments like these certainly don't make me feel inclined to work on them though, even if I find the time.
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #23 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-18 00:59:18 ---
Try my patch from http://bugs.winehq.org/show_bug.cgi?id=11420 (http://bugs.winehq.org/attachment.cgi?id=10552) and see if it helps.
Yip, that helps, the installer finishes fine in the end. So when James' patch gets into git, this bug becomes actually a duplicate of the above mentioned bug. Just for the info
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #24 from L. Rahyen mail@science.su 2008-02-18 06:31:47 ---
Right, this is how far i got with the app, the GUI is up and running, but the main window doesn't refresh.
After installation 3ds max probably set its driver to DirectX. What you see may happen even on Windows if your videocard doesn't support DirectX 9. To resolve this problem you probably want to try to set it to OpenGL. To do this, run 3ds max and then go to:
Customize -> Preferences... -> Viewports -> Choose Driver...
If current driver is set to DirectX, you need to click "Revert from Direct3D ..." button. Obviously, OpenGL is the best choice (theoretically). Try this and report back if this helps.
* * *
Louis, using your instructions (thanks!) I was able to install 3ds max successfully on WINE. However I wasn't able to get the GUI to up and running as you. Maybe you can suggest what I did wrong? Here is what I did:
0) I created clean WINE prefix.
1) Using patches from the howto for .NET applications http://appdb.winehq.org/objectManager.php?sClass=version&iId=3754&iT... + patch from http://bugs.winehq.org/show_bug.cgi?id=11420 + patch 0002-Set-the-UserLanguageID-property.patch from wine-patches I compiled WINE. Then I did all other steps mentioned in the howto.
2) I installed .NET 2.0 (by running Installs/support/dotNet2.0/dotnetfx.exe from my installation DVD).
3) After this I ran Setup.exe then choosed to install stand-alone 32-bit 3ds max 9. Its installation finished successfully. Great!
4) Then (after cd'ing to the installation directory with 3ds max) I ran 3dsmax.exe. I choosed "Run the product" (by doing it is allowed to use 3ds max 9 for 30 days without activation, in DEMO mode) and then loading splash screen appeared and 3ds max loaded all its libraries. After this I got "Starting 3ds Max..." label on the splash screen, and after few seconds of waiting 3ds max crashed, asking to send error report to Autodesk (only message in the console during crashing was "fixme:dbghelp:dump_system_info fill in CPU vendorID and feature set"; use of native dbghelp remove the fixme but doesn't changed anything). If I try to use native comctl32 (by running "winetricks cc580", and yes, comctl32 manifest in windows/winsxs/manifests was removed) 3ds max crash after "Starting 3ds Max..." silently (splash screen just disappear and that's all) - it even don't try to ask to send bug report to Autodesk (no output in the console during crashing, comctl32 was only native override). Additionally, I tried native riched20 (with comctl32) and no change at all - still crashes silently. It is important to note that I tried to override comctl32 and riched20 only after successful installation (installer will fail to work if you try to override comctl32 before completing the installation).
Do you have any idea what I did wrong? Or maybe you forgot to mention some additional steps?
I used latest git with patches mentioned above and 3ds max 9 installation DVD (as I mentioned above, I ran it as DEMO version by choosing "Run the product" instead of activating it).
If after above problem will be resolved then I'm going to test all important functions of 3ds max (and will file bug reports if necessary).
Thank you! 3ds max is very important application for me (and for my work) so I really appreciate the efforts of all people who looked into this bug...
http://bugs.winehq.org/show_bug.cgi?id=10787
James Hawkins truiken@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|msi |-unknown
--- Comment #25 from James Hawkins truiken@gmail.com 2008-02-18 11:35:01 --- Patch committed:
http://winehq.org/pipermail/wine-cvs/2008-February/040384.html
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #26 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-18 13:52:10 --- @L.Rayhen: did you put the file l_int.nls in system32? That's required at least. Also, i used native comctl32 from an XP partition (but that wouldn't really matter i guess) and also used native dxdiagn.dll (but i think you can use builtin as well). I'll add a howto in appdb i think
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #27 from L. Rahyen mail@science.su 2008-02-18 22:24:12 ---
@L.Rayhen: did you put the file l_int.nls in system32? That's required at least. Also, i used native comctl32 from an XP partition (but that wouldn't really matter i guess) and also used native dxdiagn.dll (but i think you can use builtin as well). I'll add a howto in appdb i think
You mean l_intl.nls? Yes, of course. And performed other steps in the howto too.
I now retried from scratch whole installation process that I described but without using winetricks. I copied all fonts from Windows XP (32 bit), used comctl32, dxdiagn and riched20 from it. Also, I copied msvcp71 and msvcr71 to windows/system32 directory in my WINE prefix (during installation 3ds max installer will try to use these DLLs); strangely, but even without them it can finish installation successfully.
So, even with DLLs and l_intl.nls from Windows XP I have exactly same behavior. 3ds max runs, loads its libraries, and after few seconds of displaying "Starting 3ds Max..." just silently crashes without any useful output in the console.
I can download http://3dsmaxtrial.autodesk.com/3dsmax9trial/3dsmax9Trial.exe and retry with it but downloading such a big file is very expensive for me...
Louis, did you actually retried whole installation from scratch (starting from fresh WINE prefix as I did already many times while testing workarounds you mentioned) to verify that you didn't forgot anything important? Also did you used latest git or latest release version of WINE?
If nothing helps, I will try to download the demo mentioned above...
Thank you for your help!
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #28 from Dan Kegel dank@kegel.com 2008-02-18 22:56:18 --- Louis, it'd be even better to have a shell script that automates the process, if possible. Hmm. If there's something I should add to winetricks, let me know.
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #29 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-19 01:27:48 --- I'll add my exact steps to the appdb this eveneing. I'm not at my computer atm. In the meanwhile, L.Rayhen, could you post your exact console output? Then i can compare it with mine. Regards
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #30 from L. Rahyen mail@science.su 2008-02-19 05:05:49 --- Created an attachment (id=10838) --> (http://bugs.winehq.org/attachment.cgi?id=10838) Console output after running "wine 3dsmax.exe"
Here is my console output. I tried to generate log by using same overrides as you. If you need any other logs, let me know. I used comctl32, riched20 and dxdiagn native DLLs. Use of builtin dxdiagn doesn't change actual behavior but builtin outputs too much of useless (harmless) fixmes. Use of riched20 doesn't change the result too. Use of native comctl32 prevents Autodesk crash-reporting system from working; with builtin it works, and also after (actually, right before) 3ds max silently crashes appears message "fixme:dbghelp:dump_system_info fill in CPU vendorID and feature set" (I think this is harmless fixme).
3ds max crashes right after last message "Base system initialized." (after few seconds of displaying "Starting 3ds Max..." in the splash screen). As you can see, there is no output at all. Splash screen just "disappears". Actually it probably tries to generate crash report to Autodesk but that silently fails (crash report system succeeds only with builtin comctl32; however, this doesn't change the result - 3ds max crashes on startup exactly the same).
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #31 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-20 01:24:37 --- What happens if you run the app like this: (copy and paste this line):
WINEDLLOVERRIDES="comctl32,dxdiagn=n;d3d9,d3d8=""" wine 3dsmax.exe
Maybe it has problems initializing directX. When i run it like that, it offers me a screen to revert to opengl (careful: all messageboxes are behind the splash screen so you have to bring them up by clicking on them in the taskbar) If still nothing happens , please attach a bzipped2 +relay,+seh,+tid log. Regards
http://bugs.winehq.org/show_bug.cgi?id=10787
--- Comment #32 from L. Rahyen mail@science.su 2008-02-22 03:12:33 --- Sorry for a delay with reply. Was too busy...
What happens if you run the app like this: (copy and paste this line):
WINEDLLOVERRIDES="comctl32,dxdiagn=n;d3d9,d3d8=""" wine 3dsmax.exe
Maybe it has problems initializing directX. When i run it like that, it offers me a screen to revert to opengl (careful: all messageboxes are behind the splash screen so you have to bring them up by clicking on them in the taskbar)
Better way to bring up menu that allows to switch the driver that 3ds max uses is this short command:
wine 3dsmax.exe -h
I tried to use OpenGL driver. Unfortunately, same result as with DirectX. I ran above command again, and switched to software driver. And now 3ds max starts! So this is what prevent it from starting up - some kind of problem initializing DirectX/OpenGL.
Louis, was you able to start up 3ds max with OpenGL? And if yes, what video hardware and driver do you have; do you see something in viewports with OpenGL driver?
* * *
BTW, software driver is horrible - even in VMWare I prefer to use OpenGL driver because it doesn't have glitches of 3ds max' software driver (of course, in VMWare OpenGL use software rendering so it's SLOW), but at least it can start in WINE and most of functionality in the program works perfectly! It is really sad that at least OpenGL doesn't work for some reason...
I guess I need to file separate bug report for the problem with starting up with OpenGL/DirectX driver (I think that they are related)... As well as for other bugs (I found 5 bugs in WINE during my quick testing of 3ds max with software driver); I will create separate bug reports for them (in next few days when I will have more free time than now).
Thanks for your support!
http://bugs.winehq.org/show_bug.cgi?id=10787
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED
--- Comment #33 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-02-22 09:56:43 ---
Louis, was you able to start up 3ds max with OpenGL?
Yes it did
And if yes, what video hardware and driver do you have;
ATI Radeon 9600, fglrx
do you see something in viewports with OpenGL driver?
Nope, as stated before, these windows don't refresh. Maybe it's a leftover of bug 2398. However, there are new fixes for the afore mentioned bug in current git, committed yesterday. Maybe things will be better in wine 0.9.56. Let's hope ...
Anyway, this bug was about the installer, and the main bug in this installer is basically fixed by James (thanks). The remaining issue is a dupe of bug 8466. So let's close this one as fixed
http://bugs.winehq.org/show_bug.cgi?id=10787
Dan Kegel dank@kegel.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #34 from Dan Kegel dank@kegel.com 2008-02-22 11:39:49 --- 0.9.56 released, so closing all bugs marked as RESOLVED FIXED.
http://bugs.winehq.org/show_bug.cgi?id=10787
Dan Kegel dank@kegel.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Can't install 3ds max 9 |3ds max 9
http://bugs.winehq.org/show_bug.cgi?id=10787
Dan Kegel dank@kegel.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|3ds max 9 |Can't install 3ds max 9
--- Comment #35 from Dan Kegel dank@kegel.com 2008-05-05 15:37:29 --- Ignore this change. Sorry...
http://bugs.winehq.org/show_bug.cgi?id=10787
Bug 10787 depends on bug 10467, which changed state.
Bug 10467 Summary: Microsoft .NET Framwork 2.0 requires l_intl.nls (unicode casing tables) http://bugs.winehq.org/show_bug.cgi?id=10467
What |Old Value |New Value ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED
https://bugs.winehq.org/show_bug.cgi?id=10787 Bug 10787 depends on bug 10601, which changed state.
Bug 10601 Summary: Microsoft .NET Framework: GAC API for managed assembly installation needs reparse point/junction API support (.NET Framework 2.0, 3.0, 4.0 installers and other apps that make use of GAC API) https://bugs.winehq.org/show_bug.cgi?id=10601
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |DUPLICATE
https://bugs.winehq.org/show_bug.cgi?id=10787
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |msi Fixed by SHA1| |8412a1363bafd32c75411f98242 | |a28ea14681c7e Summary|Can't install 3ds max 9 |3ds Max 9 installation | |fails with | |err:msi:ITERATE_Actions | |Execution halted, action | |L"SetEULA_COUNTRYFromUserLa | |nguageID" returned 1603 URL|http://www.soft32.com/downl |https://web.archive.org/web |oad_81704.html |/20150724061434/http://file | |s.modacity.net/software/3ds | |max/3dsmax9.zip