Created
September 3, 2025 13:36
-
-
Save adeii/44b7d421334070740945574bb5b7a8b1 to your computer and use it in GitHub Desktop.
Steam game DL
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
| :: 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