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