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