Skip to content

Instantly share code, notes, and snippets.

@Dids
Last active March 16, 2019 20:42
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save Dids/83f2c524ae0000160d2a3583fd7e6d4f to your computer and use it in GitHub Desktop.
Save Dids/83f2c524ae0000160d2a3583fd7e6d4f to your computer and use it in GitHub Desktop.
Conan Exiles dedicated server startup scripts (be sure to checkout the server configuration guide here: https://gist.github.com/Dids/9564a693bb5b40cc0773cf8a5f07b4c1)
@echo off
steamcmd.exe +runscript install.txt
@ShutdownOnFailedCommand 1
@NoPromptForPassword 1
login anonymous
force_install_dir C:\ConanExiles
app_update 443030 validate
quit
@echo off
:start
pushd C:\steamcmd
call install.bat
popd
echo Starting Conan Exiles server, please keep this window open for automatic restart to work..
echo (if you want to quit, close this window from the X, then issue CTRL-C in the server window)
pushd C:\ConanExiles
call ConanSandboxServer.exe -log
popd
echo Conan Exiles server exited, restarting..
goto start
@Xerrion
Copy link

Xerrion commented Mar 13, 2017

@Dids It's me who is a nut job, its -userdir not -usedir

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment