[Bug 35688] New: iMesh 7.x reports 'You are using an older version of Windows Media Player!' (needs WMP 10 version registry key)
https://bugs.winehq.org/show_bug.cgi?id=35688 Bug ID: 35688 Summary: iMesh 7.x reports 'You are using an older version of Windows Media Player!' (needs WMP 10 version registry key) Product: Wine Version: 1.7.13 Hardware: x86 OS: Linux Status: NEW Severity: minor Priority: P2 Component: -unknown Assignee: wine-bugs(a)winehq.org Reporter: focht(a)gmx.net Hello folks, as the summary says... and the popup seems to be harmless (app still works). The requested version seems to be application version dependent: iMesh 7.x wants at least WMP 10.x There doesn't seem to exist a common WMP API to retrieve the version. Applications use different ways to check for it. For example bug 35677 where the installer checks the version resource of 'C:\\Program Files\\Windows Media Player\\wmplayer.exe' This app reads WMP version key from registry. --- snip --- $ pwd /home/focht/.wine/drive_c/Program Files/iMesh Applications/iMesh $ WINEDEBUG=+tid,+seh,+relay,+ole,+variant,+wmp wine ./iMesh.exe >>log.txt 2>&1 ... 0024:Call advapi32.RegCreateKeyExW(80000002,00de0c40 L"SOFTWARE\\Microsoft\\MediaPlayer\\PlayerUpgrade",00000000,00000000,00000000,0002001f,00000000,0033f0bc,00000000) ret=00492057 0024:Ret advapi32.RegCreateKeyExW() retval=00000000 ret=00492057 0024:Call advapi32.RegQueryValueExW(000000c0,00d61320 L"PlayerVersion",00000000,0033f160,0033f21c,0033f168) ret=004924a6 0024:Ret advapi32.RegQueryValueExW() retval=00000002 ret=004924a6 0024:Call advapi32.RegCloseKey(000000c0) ret=004924af 0024:Ret advapi32.RegCloseKey() retval=00000000 ret=004924af ... 0024:Call winex11.drv.SetWindowText(000103cc,0415e608 L"You are using an older version of Windows Media Player!") ret=7eb4e7a5 --- snip --- I created the key in a fresh WINEPREFIX and it made the app happy. --- snip --- [HKEY_LOCAL_MACHINE\Software\Microsoft\MediaPlayer\PlayerUpgrade] "PlayerVersion"="10,0,0,0" --- snip --- $ sha1sum iMeshV7.exe 0e4aa7ae0da88b7f69a7daa1bca36f3f2f6c497b iMeshV7.exe $ du -sh iMeshV7.exe 8.4M iMeshV7.exe $ wine --version wine-1.7.13-100-gfcae016 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=35688 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download URL| |http://www.filehippo.com/do | |wnload_imesh/4392/ -- 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=35688 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |wmp&wmvcore -- 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=35688 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|wmp&wmvcore |registry -- 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=35688 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |austinenglish(a)gmail.com --- Comment #1 from Austin English <austinenglish(a)gmail.com> --- I tried: diff --git a/loader/wine.inf.in b/loader/wine.inf.in index 343bc6a..a5517d7 100644 --- a/loader/wine.inf.in +++ b/loader/wine.inf.in @@ -635,6 +635,7 @@ HKLM,Software\Microsoft\DFS,,16 HKLM,Software\Microsoft\Driver Signing,,16 HKLM,Software\Microsoft\EnterpriseCertificates,,16 HKLM,Software\Microsoft\EventSystem,,16 +HKLM,Software\Microsoft\MediaPlayer\PlayerUpgrade,"PlayerVersion",2,"10,0,0,0" HKLM,Software\Microsoft\MSMQ,,16 HKLM,Software\Microsoft\Non-Driver Signing,,16 HKLM,Software\Microsoft\Notepad\DefaultFonts,,16 diff --git a/loader/wine.inf.in b/loader/wine.inf.in index 343bc6a..b2699c8 100644 --- a/loader/wine.inf.in +++ b/loader/wine.inf.in @@ -635,6 +635,7 @@ HKLM,Software\Microsoft\DFS,,16 HKLM,Software\Microsoft\Driver Signing,,16 HKLM,Software\Microsoft\EnterpriseCertificates,,16 HKLM,Software\Microsoft\EventSystem,,16 +HKLM,Software\Microsoft\MediaPlayer\PlayerUpgrade,"PlayerVersion",2,"12,0,7601,18840" HKLM,Software\Microsoft\MSMQ,,16 HKLM,Software\Microsoft\Non-Driver Signing,,16 HKLM,Software\Microsoft\Notepad\DefaultFonts,,16 using: austin(a)austin1:~$ git describe wine-1.7.54-261-g61c49bd austin(a)austin1:~$ sha1sum iMeshV7.exe 0e4aa7ae0da88b7f69a7daa1bca36f3f2f6c497b iMeshV7.exe with a clean 32-bit prefix each time, of course. -- 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=35688 --- Comment #2 from Anastasius Focht <focht(a)gmx.net> --- Hello Austin, I don't have a magic glass ball to guess everything that might have gone wrong. You need to provide more detailed information about what exactly doesn't work and/or do little more pre-investigation on your own. * steps to reproduce, i.e. where exactly the message is shown ("I ran 'foo'", "I clicked 'X'", ...) * trace log output/snippets showing it still doesn't work with the registry present and as proof it's the same issue from this bug and not something else 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=35688 --- Comment #3 from Anastasius Focht <focht(a)gmx.net> --- Hello folks, I created bug 39581 for one remaining check from the installer. The issue here is about the actual app (runtime). 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=35688 --- Comment #4 from Austin English <austinenglish(a)gmail.com> --- https://source.winehq.org/patches/data/116625 -- 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=35688 --- Comment #5 from Austin English <austinenglish(a)gmail.com> --- Should be fixed by https://source.winehq.org/git/wine.git/commitdiff/76faeeb50f66cb5ba211b7ea4c... -- 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=35688 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |76faeeb50f66cb5ba211b7ea4cc | |00df5a129284d Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #6 from Anastasius Focht <focht(a)gmx.net> --- Hello folks, this is fixed by commit https://source.winehq.org/git/wine.git/commitdiff/76faeeb50f66cb5ba211b7ea4c... Thanks Austin No more complaints about outdated MS Windows Media Runtime/player in installer and app. 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=35688 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #7 from Alexandre Julliard <julliard(a)winehq.org> --- Closing bugs fixed in 1.8-rc1. -- 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=35688 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- URL|http://www.filehippo.com/do |https://web.archive.org/web |wnload_imesh/4392/ |/20210204091428/http://dl15 | |.afterdawn.com/download/1b9 | |7db413c75ff45dc7131e8a434ca | |f4/601bba87/0-m/imesh_v7.2. | |zip -- 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 (2)
-
wine-bugs@winehq.org -
WineHQ Bugzilla