Last active
December 29, 2022 17:40
-
-
Save code-inflation/0622a91e1396cd1c313104b29d25270a to your computer and use it in GitHub Desktop.
Age of Empires 2: Definitive Edition on Linux desync fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if ! command -v cabextract &> /dev/null | |
| then | |
| echo "cabextract needs to be installed" | |
| exit | |
| fi | |
| cd /home/$USER/.steam/steam/steamapps/compatdata/813780/pfx/drive_c/windows/system32/ | |
| mv ucrtbase.dll ucrtbase.dll.old | |
| wget "wget https://download.microsoft.com/download/0/6/4/064F84EA-D1DB-4EAA-9A5C-CC2F0FF6A638/vc_redist.x64.exe" | |
| cabextract vc_redist.x64.exe | |
| sudo cabextract a10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment