Last active
May 31, 2020 14:39
-
-
Save aebian/3350d87bf35fcc6cc8367eb90adf6dc6 to your computer and use it in GitHub Desktop.
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
@echo off | |
REM https://github.com/BytexDigital/SteamCLI/ | |
SETLOCAL ENABLEDELAYEDEXPANSION | |
SET STEAMUSER=<user> | |
SET STEAMPWD=<pw> | |
SET A3ID=107410 | |
SET A3BRANCH=public | |
SET DEPOTID=107411 | |
SET BRANCHPW=public | |
SET A3instDir="F:\Games\Steam\steamapps\common\Arma 3 Stable" | |
SET STEAMPATH=D:\Games\Steam\steamapps\common\SteamCMD\SteamCLI\ | |
:: _________________________________________________________ | |
echo. | |
echo You are about to update your ArmA 3 client | |
echo Dir: %A3instDir% | |
echo Branch: %A3branch% | |
echo. | |
echo Key "ENTER" to proceed | |
pause | |
%STEAMPATH%\steamcli.exe --username=%STEAMUSER% --password=%STEAMPWD% --app-download --targetdir=%A3instDir% --os=windows --appid=%A3ID% --branch=%A3BRANCH% --branchpassword=%BRANCHPW% --depotid=%DEPOTID% --synctarget | |
echo . | |
echo Your ArmA 3 client is now up to date | |
echo key "ENTER" to exit | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment