https://bugs.winehq.org/show_bug.cgi?id=45343
Bug ID: 45343 Summary: Vavoo Webinstaller fails Product: Wine Version: 3.9 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: maiktapwagner@aol.com Distribution: ---
Created attachment 61632 --> https://bugs.winehq.org/attachment.cgi?id=61632 Console Output wine 3.9 (staging)
Hello everyone,
Somebody in the German ubuntuusers.de forum had an issue of getting a software called "Vavoo" to run.
I am getting the following (Windows) error message
"Unable to run the Windows program wmic.exe to verify that Windows Update K2670838 is installed."
Console output is attached.
https://bugs.winehq.org/show_bug.cgi?id=45343
Maik Wagner maiktapwagner@aol.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, Installer CC| |maiktapwagner@aol.com Distribution|--- |SUSE URL| |https://www.vavoo.tv/softwa | |re/get?platform=win32&proce | |ssor=i386&type=webinstaller
https://bugs.winehq.org/show_bug.cgi?id=45343
Fabian Maurer dark.shadow4@web.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |dark.shadow4@web.de Ever confirmed|0 |1 Status|UNCONFIRMED |NEW
--- Comment #1 from Fabian Maurer dark.shadow4@web.de --- Confirming.
You can set windows version to XP to bypass that error, but then it fails to download.
https://bugs.winehq.org/show_bug.cgi?id=45343
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |austinenglish@gmail.com
https://bugs.winehq.org/show_bug.cgi?id=45343
--- Comment #2 from Maik Wagner maiktapwagner@aol.com --- Created attachment 61639 --> https://bugs.winehq.org/attachment.cgi?id=61639 Console Output wine 3.9 (staging) with wine set to Windows XP
Dear Fabian,
thanks for testing this issue. Setting winecfg to Windows XP helps indeed and in my case the installation routine actually gets to the finish line fairly quickly but doesn't seem to have downloaded much.
From the setup routine I can actually launch the program but all I get is a
black window opening up.
I am attaching my console output for Windows XP and further insight. So I am assuming for this issue upstream (Vavoo) still has some XP code in their routine.
Have a good week,
Maik
https://bugs.winehq.org/show_bug.cgi?id=45343
Fabian Maurer dark.shadow4@web.de changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Vavoo Webinstaller fails |Vavoo Webinstaller fails | |with windows version set to | |Win7
--- Comment #3 from Fabian Maurer dark.shadow4@web.de --- Ah yes, didn't test with wine-staging. It fails with vanilla wine, but works with wine-staging. If anyone is curious, the staging patchset to fix the issue is https://github.com/wine-staging/wine-staging/tree/master/patches/crypt32-ECD...
For that new issue, can you please create a new bug report and put me on CC? Let's keep this one about the problem in Win7 mode.
https://bugs.winehq.org/show_bug.cgi?id=45343
--- Comment #4 from Hans Leidekker hans@meelstraat.net --- This should be fixed in vanilla Wine, please retest.
https://bugs.winehq.org/show_bug.cgi?id=45343
--- Comment #5 from Austin English austinenglish@gmail.com --- I see the same in wine-4.17-126-g15bf3eee2c.
Console does show: 0043:fixme:wmic:wmain command line switch L"/?" not supported
now. I changed wmic/main.c to return 0 for unsupported commands, it then gets slightly further, printing: 0051:fixme:findstr:wmain stub: L"C:\windows\System32\findstr.exe" L"/?"
https://bugs.winehq.org/show_bug.cgi?id=45343
--- Comment #6 from Maik Wagner maiktapwagner@aol.com --- Created attachment 65585 --> https://bugs.winehq.org/attachment.cgi?id=65585 Console output - wine 4.18 (staging)
With 4.18 (Staging) it still fails.
https://bugs.winehq.org/show_bug.cgi?id=45343
Louis Lenders xerox.xerox2000x@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |programs CC| |xerox.xerox2000x@gmail.com Summary|Vavoo Webinstaller fails |Multiple apps (Vavoo |with windows version set to |Webinstaller,Kodi) fail |Win7 |with windows version set to | |Win7: wmic.exe needs | |support for "/?" switch
--- Comment #7 from Louis Lenders xerox.xerox2000x@gmail.com --- Hi, Kodi has same problem
Maybe Vavoo and Kodi use same installer(?), anyway, let`s target this bugreport for the 1st problem: wmic.exe should support '/?' switch
After that, in source code for Kodi one can read that a few more things are needed, but that can be directed to new bugreports (though problem for the programs is minor as one can switch to win81 to workaround the bug)
Var /GLOBAL HotFixID ${If} ${IsWin7} StrCpy $HotFixID "2670838" ; Platform Update for Windows 7 SP1 ${Else} StrCpy $HotFixID "" ${Endif} ${If} $HotFixID != "" nsExec::ExecToStack 'cmd /Q /C "%SYSTEMROOT%\System32\wbem\wmic.exe /?"' Pop $0 ; return value (it always 0 even if an error occured) Pop $1 ; command output ${If} $0 != 0 ${OrIf} $1 == "" MessageBox MB_OK|MB_ICONSTOP|MB_TOPMOST|MB_SETFOREGROUND "Unable to run the Windows program wmic.exe to verify that Windows Update KB$HotFixID is installed.$\nWmic is not installed correctly.$\nPlease fix this issue and try again to install Kodi." Quit ${EndIf} nsExec::ExecToStack 'cmd /Q /C "%SYSTEMROOT%\System32\findstr.exe /?"' Pop $0 ; return value (it always 0 even if an error occured) Pop $1 ; command output ${If} $0 != 0 ${OrIf} $1 == "" MessageBox MB_OK|MB_ICONSTOP|MB_TOPMOST|MB_SETFOREGROUND "Unable to run the Windows program findstr.exe to verify that Windows Update KB$HotFixID is installed.$\nFindstr is not installed correctly.$\nPlease fix this issue and try again to install Kodi." Quit ${EndIf} nsExec::ExecToStack 'cmd /Q /C "%SYSTEMROOT%\System32\wbem\wmic.exe qfe get hotfixid | %SYSTEMROOT%\System32\findstr.exe "^KB$HotFixID[^0-9]""' Pop $0 ; return value (it always 0 even if an error occured) Pop $1 ; command output ${If} $0 != 0 ${OrIf} $1 == "" MessageBox MB_OK|MB_ICONSTOP|MB_TOPMOST|MB_SETFOREGROUND "Platform Update for Windows (KB$HotFixID) is required.$\nDownload and install Platform Update for Windows then run setup again." ExecShell "open" "http://support.microsoft.com/kb/$HotFixID" Quit ${EndIf} SetOutPath "$INSTDIR" ${EndIf} StrCpy $CleanDestDir "-1" FunctionEnd
https://bugs.winehq.org/show_bug.cgi?id=45343
--- Comment #8 from Maik Wagner maiktapwagner@aol.com --- Created attachment 70284 --> https://bugs.winehq.org/attachment.cgi?id=70284 Console Output (wine 6.11)
Still happening with wine 6.11. Console output attached.
https://bugs.winehq.org/show_bug.cgi?id=45343
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- URL|https://www.vavoo.tv/softwa |https://web.archive.org/web |re/get?platform=win32&proce |/20210116104858/https://scd |ssor=i386&type=webinstaller |n.vavoo.tv/software/win32/V | |AVOO-Webinstaller-i386.exe CC| |focht@gmx.net
--- Comment #9 from Anastasius Focht focht@gmx.net --- Hello folks,
adding stable download links via Internet Archive for reproduce.
https://web.archive.org/web/20210116104858/https://scdn.vavoo.tv/software/wi...
$ sha1sum VAVOO-Webinstaller-i386.exe fd90811e0e868895799cb56f813896872a2dbe04 VAVOO-Webinstaller-i386.exe
$ du -sh VAVOO-Webinstaller-i386.exe 196K VAVOO-Webinstaller-i386.exe
---
https://web.archive.org/web/20210709133935/https://kodi.mirror.liteserver.nl...
$ sha1sum kodi-19.1-Matrix-x86.exe a208bbedf6a4352afcb6f60530937e8527727f42 kodi-19.1-Matrix-x86.exe
$ du -sh kodi-19.1-Matrix-x86.exe 62M kodi-19.1-Matrix-x86.exe
Regards
https://bugs.winehq.org/show_bug.cgi?id=45343
--- Comment #10 from Maik Wagner maiktapwagner@aol.com --- bash-5.1$ sha1sum VAVOO-Webinstaller-i386.exe fd90811e0e868895799cb56f813896872a2dbe04 VAVOO-Webinstaller-i386.exe
Downloaded from Austin's link from archive.org - with default options in Windows 10 mode the installer completes just fine.
In Windows 7 mode the original error message appears.
https://bugs.winehq.org/show_bug.cgi?id=45343
--- Comment #11 from Maik Wagner maiktapwagner@aol.com --- Created attachment 74271 --> https://bugs.winehq.org/attachment.cgi?id=74271 Console output (wine-8.5 on Slackware64/Multilib) - Windows 10 Default mode
https://bugs.winehq.org/show_bug.cgi?id=45343
--- Comment #12 from Maik Wagner maiktapwagner@aol.com --- Created attachment 74272 --> https://bugs.winehq.org/attachment.cgi?id=74272 Console output (wine-8.5 on Slackware64/Multilib) - Windows 7 mode