Skip to content

Instantly share code, notes, and snippets.

@adeii
Created September 3, 2025 13:36
Show Gist options
  • Select an option

  • Save adeii/44b7d421334070740945574bb5b7a8b1 to your computer and use it in GitHub Desktop.

Select an option

Save adeii/44b7d421334070740945574bb5b7a8b1 to your computer and use it in GitHub Desktop.
Steam game DL
:: Games data from https://steamdb.info/app/223710/
:: DepotDownloader https://github.com/SteamRE/DepotDownloader
:: CS:GO as DRM-free, login-free:
:: DepotDownloader.exe -app 730 -depot 731 -manifest 7617088375292372759 CS:GO
:: Select game - watch for ID, then Depot number then Manifest number
@echo.
@echo "All goes to depot folder / app id / depot id / game.exe"
@echo.
@SET "Get Steam Mobile Auth App ready!"
@SET /P APP="Paste app ID: "
@echo.
@SET /P DEPO="Paste depot ID: "
@echo.
@SET /P MAN="Paste manifest ID: "
@echo.
@SET /P USER="Paste Steam username: "
@echo.
@SET /P PASS="Paste Steam password: "
@echo.
DepotDownloader.exe -app %APP% -depot %DEPO% -manifest %MAN% -username %USER% -password %PASS%
@echo.
@echo.
@echo "HAPPY PLAYING!"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment