Skip to content

Instantly share code, notes, and snippets.

@manciuszz
Last active March 30, 2024 01:02
Show Gist options
  • Save manciuszz/4e345e89facbf11c75eb3f09fa0b1952 to your computer and use it in GitHub Desktop.
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.
# 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