[Bug 22896] New: Java JRE 6 doesn't install with simulation Windows Vista
http://bugs.winehq.org/show_bug.cgi?id=22896 Summary: Java JRE 6 doesn't install with simulation Windows Vista Product: Wine Version: 1.2-rc1 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: studioragcortelli(a)tiscali.it Hallo, I tried install JAVA JRE current version (6u20) under Ubuntu 9.10 and Wine 1.2 with configuration = Windows Vista, but I receive this message: Installer: Wrapper.CreateFile failed with error 3: Path not found Java JRE can be downloaded here: http://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_U... If I set winecfg = Windows XP all works. Regards, Stefano -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Andrew Nguyen <arethusa26(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 --- Comment #1 from Andrew Nguyen <arethusa26(a)gmail.com> 2010-05-27 02:35:44 ---
From relay log:
0009:Call KERNEL32.GetProcAddress(68580000,00411f80 "SHGetFolderPathEx") ret=00404ba2 0009:Ret KERNEL32.GetProcAddress() retval=00000000 ret=00404ba2 ... 0009:Call KERNEL32.CreateFileA(0032f6b0 "\\Sun\\Java\\jre1.6.0_20\\Data1.cab",40000000,00000000,00000000,00000002,00000080,00000000) ret=004070f8 0009:Ret KERNEL32.CreateFileA() retval=ffffffff ret=004070f8 0009:Call KERNEL32.GetLastError() ret=00407020 0009:Ret KERNEL32.GetLastError() retval=00000003 ret=00407020 It looks like the installer tries to find SHGetFolderPathEx, which appears to be exported on Vista. Since the function doesn't exist on Wine, the installer fails to prepend a path to the directory string fragment, causing failure. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 --- Comment #2 from Andrew Nguyen <arethusa26(a)gmail.com> 2010-05-27 09:19:45 --- Created an attachment (id=28322) --> (http://bugs.winehq.org/attachment.cgi?id=28322) SHGetFolderPathEx hack for Java JRE 6 installer Some searching indicates that SHGetFolderPathEx was an early variant of what is now SHGetKnownFolderPath, and it is practically now undocumented by Microsoft as it has withdrawn any documentation that had existed for it long ago. The function, prototype wise, seems to be the same as SHGetKnownFolderPath except for the output parameters being a WCHAR buffer pointer and maximum length in DWORDs. Wine does not have any of the known folders functionality implemented, so the best I could do was a really bad hack that does manage to please the installer. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Installer, patch -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Dan Kegel <dank(a)kegel.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dank(a)kegel.com --- Comment #3 from Dan Kegel <dank(a)kegel.com> 2010-08-13 19:41:22 --- AaaaaAAaaaAAAaaAAAAaAAAAA!!!: A Reckless Disregard for Gravity ( http://www.wildgames.com/download/aaaaa-a-reckless-disregard-for-gravity ) seems to suffer from this; it crashes with "unimplemented function". -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Jerome Leclanche <adys.wh(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adys.wh(a)gmail.com --- Comment #4 from Jerome Leclanche <adys.wh(a)gmail.com> 2010-09-14 18:44:48 CDT --- Commits 678c6776901425654c05988202ed53f7e9a68334 and 859a1d0d44e33b9705dc8578d78b13b270d70708 implement SHGetKnownFolderPath and SHGetFolderPathEx. Please retest. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 --- Comment #5 from Hans Leidekker <hans(a)meelstraat.net> 2010-09-15 02:34:35 CDT --- Created an attachment (id=30762) --> (http://bugs.winehq.org/attachment.cgi?id=30762) shell32: Support FOLDERID_LocalAppDataLow. The commits are not sufficient for the java runtime installer which wants FOLDERID_LocalAppDataLow, a folder introduced with vista. Attached patch adds support for this folder but the next problem is that the installer assumes that the folder exists. This folder doesn't appear to have an official CSIDL (in which case a solution would be to add it to wine.inf), so I'm not sure when or how this folder should be created in Wine. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Hans Leidekker <hans(a)meelstraat.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hans(a)meelstraat.net Component|-unknown |shell32 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Frédéric Delanoy <frederic.delanoy(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |http://www.oldversion.com/w | |indows/java-platform-6-upda | |te-20 CC| |frederic.delanoy(a)gmail.com Summary|Java JRE 6 doesn't install |Java JRE 6u20 doesn't |with simulation Windows |install with simulation |Vista |Windows Vista --- Comment #6 from Frédéric Delanoy <frederic.delanoy(a)gmail.com> 2013-07-06 02:10:20 CDT --- Still in wine-1.6-rc4-52-g9a0b434 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Frédéric Delanoy <frederic.delanoy(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |congelli501(a)gmail.com --- Comment #7 from Frédéric Delanoy <frederic.delanoy(a)gmail.com> 2013-07-07 12:05:17 CDT --- *** Bug 27452 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gyebro69(a)gmail.com --- Comment #8 from Anastasius Focht <focht(a)gmx.net> --- *** Bug 35218 has been marked as a duplicate of this bug. *** -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |focht(a)gmx.net Summary|Java JRE 6u20 doesn't |Multiple applications and |install with simulation |games need support for |Windows Vista |shell32 | |FOLDERID_LocalAppDataLow | |(.NET based Unity Engine | |games, Java JRE 6 in Vista | |mode) Severity|minor |normal --- Comment #9 from Anastasius Focht <focht(a)gmx.net> --- Hello folks, refining summary as this problems affects various apps/games (search for 'AppData\LocalLow appdb'). If you find appdb entries stating 'Just create folder drive_c/users/AppData/LocalLow/xxx' add the bug for reference. Obviously still present. $ wine --version wine-1.7.9-158-g33fa552 Regards -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 RevenantX <doomrevx(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |doomrevx(a)gmail.com -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=22896 --- Comment #10 from Anastasius Focht <focht(a)gmx.net> --- Hello folks, obviously still present. Also reported for 'The Forest' (Steam): http://steamcommunity.com/app/242760/discussions/1/522729358874047045 Regards -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=22896 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lostcoderhaley(a)gmail.com --- Comment #11 from Anastasius Focht <focht(a)gmx.net> --- *** Bug 34219 has been marked as a duplicate of this bug. *** -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Pedro Timóteo <pedro.timoteo(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pedro.timoteo(a)gmail.com -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 --- Comment #12 from RevenantX <doomrevx(a)gmail.com> --- Mark as duplicate http://bugs.winehq.org/show_bug.cgi?id=34858 -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrey.terenkov(a)gmail.com --- Comment #13 from Anastasius Focht <focht(a)gmx.net> --- *** Bug 34858 has been marked as a duplicate of this bug. *** -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |me(a)jarradhope.com --- Comment #14 from Anastasius Focht <focht(a)gmx.net> --- *** Bug 26921 has been marked as a duplicate of this bug. *** -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Yanis Lukes <Pendrokar(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |36964 -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Yanis Lukes <Pendrokar(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|36964 | -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Sebastian Lackner <sebastian(a)fds-team.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sebastian(a)fds-team.de --- Comment #15 from Sebastian Lackner <sebastian(a)fds-team.de> --- Should be fixed with: http://source.winehq.org/git/wine.git/patch/e38d1c9aa1ff39d5fae25ec64d895396... -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=22896 Jerome Leclanche <adys.wh(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |e38d1c9aa1ff39d5fae25ec64d8 | |95396afd31835 Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #16 from Jerome Leclanche <adys.wh(a)gmail.com> --- Should be fixed. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=22896 Yanis Lukes <Pendrokar(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Pendrokar(a)gmail.com --- Comment #17 from Yanis Lukes <Pendrokar(a)gmail.com> --- Confirming fix for Unity 3D(Unity Editor). $ ./wine --version wine-1.7.23-59-ge38d1c9 (plain master branch, no modifications) -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=22896 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #18 from Alexandre Julliard <julliard(a)winehq.org> --- Closing bugs fixed in 1.7.24. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=22896 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |austinenglish(a)gmail.com --- Comment #19 from Austin English <austinenglish(a)gmail.com> --- *** Bug 32429 has been marked as a duplicate of this bug. *** -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
participants (1)
-
wine-bugs@winehq.org