0% found this document useful (0 votes)
46 views1 page

DayZ Server Batch File Setup Guide

This batch file sets up and runs a local DayZ Standalone game server. It defines server settings like the name, file location, port, and CPU cores. It then starts the DayZServer executable using the configured settings, runs it for 4 hours, kills the process, and repeats the cycle by going back to the start label.

Uploaded by

renum1302
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
46 views1 page

DayZ Server Batch File Setup Guide

This batch file sets up and runs a local DayZ Standalone game server. It defines server settings like the name, file location, port, and CPU cores. It then starts the DayZServer executable using the configured settings, runs it for 4 hours, kills the process, and repeats the cycle by going back to the start label.

Uploaded by

renum1302
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

@echo off

:start
::Server name
set serverName=Local DayZ Standalone Server
::Server files location
set serverLocation="C:\Program Files (x86)\Steam\steamapps\common\DayZServer"
::Server Port
set serverPort=2302
::Server config
set serverConfig=serverDZ.cfg
::Logical CPU cores to use (Equal or less than available)
set serverCPU=2
::Sets title for terminal (DONT edit)
title %serverName% batch
::DayZServer location (DONT edit)
cd "%serverLocation%"
echo (%time%) %serverName% started.
::Launch parameters (edit end:
-config=|-port=|-profiles=|-doLogs|-adminLog|-netLog|-freezeCheck|-filePatching|-BEpath=|-cpu
Count=)
start "DayZ Server" /min "DayZServer_x64.exe" -config=%serverConfig% -port=%serverPort%
-cpuCount=%serverCPU% -dologs -adminlog -netlog -freezecheck
::Time in seconds before kill server process (14400 = 4 hours)
timeout 14390
taskkill /im DayZServer_x64.exe /F
::Time in seconds to wait before..
timeout 10
::Go back to the top and repeat the whole cycle again
goto start

You might also like