https://bugs.winehq.org/show_bug.cgi?id=56156
Bug ID: 56156 Summary: DeX Product: Wine Version: 8.0 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: pingo-power@hotmail.fr Distribution: ---
Created attachment 75838 --> https://bugs.winehq.org/attachment.cgi?id=75838 logs
ಀ
https://bugs.winehq.org/show_bug.cgi?id=56156
pingo-power@hotmail.fr changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |pingo-power@hotmail.fr
https://bugs.winehq.org/show_bug.cgi?id=56156
Olivier F. R. Dierick o.dierick@piezo-forte.be changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |o.dierick@piezo-forte.be Ever confirmed|0 |1 Status|UNCONFIRMED |NEEDINFO
--- Comment #1 from Olivier F. R. Dierick o.dierick@piezo-forte.be --- Hello,
Is this the application?: https://appdb.winehq.org/objectManager.php?sClass=application&iId=16904
Please describe in simple words what happens when you run the command to launch the application.
Regards.
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #2 from A ppJan2024@proton.me --- No it's not a game, it's from SamSung. Installation shows as completed but auto open don't open and the software is nowhere to be found to open it
https://bugs.winehq.org/show_bug.cgi?id=56156
Olivier F. R. Dierick o.dierick@piezo-forte.be changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |UNCONFIRMED Keywords| |download Ever confirmed|1 |0 URL| |https://www.samsung.com/us/ | |apps/dex/ Summary|DeX |Samsung DeX fails to | |install.
--- Comment #3 from Olivier F. R. Dierick o.dierick@piezo-forte.be --- Hello,
Adding download URL and keyword.
--- from attachment --- [0160:019C][2024-01-07T11:09:19]e313: Failed to acquire payload: NetFx48Redist to working path: C:\users\bob\Temp{34132CBD-BF63-4510-9317-7FA982E3A096}\NetFx48Redist, error: 0x80070002. [0160:0164][2024-01-07T11:09:19]e000: Error 0x80070002: Failed while caching, aborting execution. [0160:0178][2024-01-07T11:09:21]i000: [BURN]: StartSamsungDeX 32 : Lanuch app After Install : Exception message : Chemin introuvable. --- end ---
This looks like the application failed to install and rolled the installation back. It seems to want .NET Framework 4.8.
Please try to install native .NET Framework 4.8 and see if it helps. You may install it with 'winetricks -q dotnet48'. Note that after dotnet48 is installed, it can't be cleanly removed. If you want to revert to builtin mono, you'll have to delete the wineprefix and restart from scratch.
Also, according to comments in bug 49989, you may have better result after installing Arial font with 'winetricks -q arial'.
Regards.
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #4 from A ppJan2024@proton.me --- (In reply to Olivier F. R. Dierick from comment #3)
Hello,
Adding download URL and keyword.
--- from attachment --- [0160:019C][2024-01-07T11:09:19]e313: Failed to acquire payload: NetFx48Redist to working path: C:\users\bob\Temp{34132CBD-BF63-4510-9317-7FA982E3A096}\NetFx48Redist, error: 0x80070002. [0160:0164][2024-01-07T11:09:19]e000: Error 0x80070002: Failed while caching, aborting execution. [0160:0178][2024-01-07T11:09:21]i000: [BURN]: StartSamsungDeX 32 : Lanuch app After Install : Exception message : Chemin introuvable. --- end ---
This looks like the application failed to install and rolled the installation back. It seems to want .NET Framework 4.8.
Please try to install native .NET Framework 4.8 and see if it helps. You may install it with 'winetricks -q dotnet48'. Note that after dotnet48 is installed, it can't be cleanly removed. If you want to revert to builtin mono, you'll have to delete the wineprefix and restart from scratch.
Also, according to comments in bug 49989, you may have better result after installing Arial font with 'winetricks -q arial'.
Regards.
I've tested a new time on wine-8.18 and it's the very same logs
install native .NET Framework 4.8 install it with 'winetricks -q dotnet48' revert to builtin mono delete the wineprefix and restart from scratch installing Arial font with 'winetricks -q arial'.
Maybe that could achieve it safely?
```shell # Save the current Wine prefix export ORIGINAL_WINEPREFIX=$WINEPREFIX
# Set up a new Wine prefix export WINEPREFIX=~/.wine-dotnet48
# Install .NET Framework 4.8 winetricks dotnet48
# Install Arial font winetricks corefonts
# After installation, if you want to delete the Wine prefix: rm -rf ~/.wine-dotnet48
# Restore the original Wine prefix export WINEPREFIX=$ORIGINAL_WINEPREFIX
```
Though I'm not sure
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #5 from A ppJan2024@proton.me --- Or maybe
```shell # Save the current Wine prefix export ORIGINAL_WINEPREFIX=$WINEPREFIX
# Set up a new Wine prefix export WINEPREFIX=/home/$USER/.wine/.wine-dotnet48
# Install .NET Framework 4.8 winetricks dotnet48
# Install Arial font winetricks -q arial
# Execute the program in that context wine /home/$USER/Downloads/SamsungDeXSetupWin.exe
# After installation, if you want to delete the Wine prefix: rm -rf /home/$USER/.wine/.wine-dotnet48
# Restore the original Wine prefix export WINEPREFIX=$ORIGINAL_WINEPREFIX ```
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #6 from A ppJan2024@proton.me --- Or maybe
```shell # Save the current Wine prefix export ORIGINAL_WINEPREFIX=$WINEPREFIX
# Set up a new Wine prefix export WINEPREFIX=/home/$USER/.wine/.wine-SamSung
# Install .NET Framework 4.8 WINEPREFIX=/home/$USER/.wine/.wine-SamSung winetricks dotnet48
# Install Arial font WINEPREFIX=/home/$USER/.wine/.wine-SamSung winetricks -q arial
# Execute the program in that context WINEPREFIX=/home/$USER/.wine/.wine-SamSung wine /home/$USER/Downloads/SamsungDeXSetupWin.exe
# After installation, if you want to delete the Wine prefix: rm -rf /home/$USER/.wine/.wine-SamSung
# Restore the original Wine prefix export WINEPREFIX=$ORIGINAL_WINEPREFIX ```
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #7 from A ppJan2024@proton.me --- Or maybe
```shell export ORIGINAL_WINEPREFIX=$WINEPREFIX && \ export WINEPREFIX=/home/$USER/.wine/.wine-SamSung && \ if [ $WINEPREFIX = /home/$USER/.wine/.wine-SamSung ]; \ then WINEPREFIX=/home/$USER/.wine/.wine-SamSung guix shell wine wine64 winetricks -- winetricks dotnet48 && \ WINEPREFIX=/home/$USER/.wine/.wine-SamSung guix shell wine wine64 winetricks -- winetricks -q arial && \ WINEPREFIX=/home/$USER/.wine/.wine-SamSung guix shell wine wine64 winetricks -- wine /home/$USER/Downloads/SamsungDeXSetupWin.exe; \ else echo The prefix is equal to $WINEPREFIX; \ fi; \ export WINEPREFIX=$ORIGINAL_WINEPREFIX ```
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #8 from A ppJan2024@proton.me --- Basically with those tricks installed it's worse, it doesn't even runs. Only stuck in some error loops and haltings
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #9 from A ppJan2024@proton.me --- Maybe someone can reproduce with same set of commands?
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #10 from A ppJan2024@proton.me --- ```shell export ORIGINAL_WINEPREFIX=$WINEPREFIX && \ export WINEPREFIX=/home/$USER/.wine/.wine-SamSung && \ if [ $WINEPREFIX = /home/$USER/.wine/.wine-SamSung ]; \ then WINEPREFIX=/home/$USER/.wine/.wine-SamSung guix shell wine wine64 winetricks -- winetricks dotnet48 && \ WINEPREFIX=/home/$USER/.wine/.wine-SamSung guix shell wine wine64 winetricks -- winetricks -q arial && \ guix shell wget2 -- wget2 --output-document=/home/$USER/Downloads/SamsungDeXSetupWin.exe https://downloadcenter.samsung.com/content/SW/202310/20231026121542224/Samsu... && \ WINEPREFIX=/home/$USER/.wine/.wine-SamSung guix shell wine wine64 winetricks -- wine /home/$USER/Downloads/SamsungDeXSetupWin.exe; \ else echo The prefix is equal to $WINEPREFIX; \ fi; \ export WINEPREFIX=$ORIGINAL_WINEPREFIX ```
https://bugs.winehq.org/show_bug.cgi?id=56156
Ken Sharp imwellcushtymelike@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- URL|https://www.samsung.com/us/ |https://downloadcenter.sams |apps/dex/ |ung.com/content/SW/202310/2 | |0231026121542224/SamsungDeX | |SetupWin.exe
--- Comment #11 from Ken Sharp imwellcushtymelike@gmail.com --- Are you really using Wine 8.0? This installs for me without issue in Wine 9.9. Please retry.
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #12 from A ppJan2024@proton.me --- Why should I retry if nothing has changed?
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #13 from A ppJan2024@proton.me --- Why should I retry if nothing has changed?
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #14 from A ppJan2024@proton.me --- Why should I retry if nothing has changed?
https://bugs.winehq.org/show_bug.cgi?id=56156
--- Comment #15 from A ppJan2024@proton.me --- Sorry bug
https://bugs.winehq.org/show_bug.cgi?id=56156
Ken Sharp imwellcushtymelike@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|UNCONFIRMED |NEEDINFO
--- Comment #16 from Ken Sharp imwellcushtymelike@gmail.com --- Change your Wine version, that's what you're supposed to change.