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 ```