Created
November 6, 2022 20:05
-
-
Save RoyBellingan/f9b05db961e8cc5e7b2e334375004d5b to your computer and use it in GitHub Desktop.
serverUpdate.bat
This file contains 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 | |
SETLOCAL ENABLEDELAYEDEXPANSION | |
:: DEFINE the following variables where applicable to your install | |
SET A3BRANCH=233780 -beta creatordlc | |
:: For stable use 233780 -beta | |
:: For Dev use 233780 -beta development | |
:: Note, the missing qotation marks, these need to be wrapped around the entire "+app_data......" | |
:: There is no DEV branch data yet for Arma 3 Dedicated Server package !!! | |
SET A3Path="C:\GAME_SERVER\arma3server" | |
SET STEAMPATH="C:\GAME_SERVER\steamcmd" | |
:: _________________________________________________________ | |
echo. | |
echo Sei pronto per installare/aggiornare ArmA3 | |
echo Dir: %A3Path% | |
echo Branch: %A3BRANCH% | |
echo. | |
echo Premi "ENTER" per procedere | |
pause | |
set /p STEAMLOGIN=Which Steam user you want to use ? | |
%STEAMPATH%\steamcmd.exe +force_install_dir %A3Path% +login %STEAMLOGIN% + +"app_update %A3BRANCH%" validate +quit | |
echo . | |
echo Your ArmA3 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