Guest User

Untitled

a guest
Dec 24th, 2019
715
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. First make a clean prefix for Steam Proton (this is necessary to get .NET Framework to work):
  2.  
  3. WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ wineboot --init
  4.  
  5. Uninstall Wine Mono Runtime:
  6.  
  7. WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ wine uninstaller
  8.  
  9. Install .NET 4.0:
  10.  
  11. wget 'http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe'
  12. WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ winetricks winxp
  13. WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ wine dotNetFx40_Full_x86_x64.exe /q && WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ wineserver -k
  14.  
  15. Change the prefix to Win 7 and set mscoree to native from winecfg:
  16.  
  17. WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ winecfg
  18.  
  19. Install .NET 4.72:
  20.  
  21. wget 'https://download.microsoft.com/download/6/E/4/6E48E8AB-DC00-419E-9704-06DD46E5F81D/NDP472-KB4054530-x86-x64-AllOS-ENU.exe'
  22. WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ wine NDP472-KB4054530-x86-x64-AllOS-ENU.exe /q && WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ wineserver -k
  23.  
  24.  
  25. If you want to use original launcher you must set prefix to Windows Vista:
  26.  
  27. WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ winetricks vista
  28.  
  29. Now just install/launch the game from Steam using Proton and it should work.
  30.  
  31. --
  32.  
  33. If you want to use Content Manager you should also install Visual C++ Redistributable 2015:
  34.  
  35. WINEPREFIX=~/.local/share/Steam/steamapps/compatdata/244210/pfx/ winetricks vcrun2015
  36.  
  37. Additionally to get Content Manager work in Steam I had to add "Content Manager.exe" from "add a non-steam game..." and force it to use Proton. Then I had to go into "compatdata" folder and replace the prefix that Steam made to it (mine was 2147483650) with a link to Assetto Corsa's prefix (~/.local/share/Steam/steamapps/compatdata/244210).
  38.  
  39. Renaming "Content Manager.exe" to "Content Manager Safe.exe" might help if there is any trouble to get it running.
Add Comment
Please, Sign In to add comment