Last active
March 30, 2024 01:02
-
-
Save manciuszz/4e345e89facbf11c75eb3f09fa0b1952 to your computer and use it in GitHub Desktop.
Script to automatically download and extract the downgraded version of STEAM Client using PowerShell.
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
# Script requires to be relative to 'Steam.exe' in order to work | |
Start-Process -FilePath "Steam.exe" -NoNewWindow -Wait -ArgumentList "-forcesteamupdate", "-forcepackagedownload", "-overridepackageurl https://archive.org/download/dec2022steam", "-exitsteam" | |
Write-Host "Creating steam.cfg to block STEAM updates" -ForegroundColor Yellow | |
Set-Content -Path "steam.cfg" -Value "BootStrapperInhibitAll=enable" | |
Write-Host "... Now you can start STEAM as before with commands like '-no-browser'" -ForegroundColor Green |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment