Server manager – DayZ
Jump to navigation
Jump to search
(Created info page for Server management script) |
No edit summary |
||
Line 59: | Line 59: | ||
C:\foo> .\Server_manager.ps1 -s stop | C:\foo> .\Server_manager.ps1 -s stop | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Tools]] | |||
[[Category:DayZ:Tools]] |
Revision as of 14:04, 21 May 2019
Synopsis
Script for download and management of DayZ server and mods.
Description
This script can be used for download of SteamCMD, DayZ server data and DayZ server mod data.
It can also run DayZ server with specified user configuration (launch parameters, server configuration file).
Notes
File Name : Server_manager.ps1
Author : Bohemia Interactive a.s. - https://feedback.bistudio.com/project/view/2/
Requires : PowerShell V4
Supported OS: Windows 10, Windows Server 2012 R2 or newer
Links
DayZ web:
https://dayz.com/
DayZ forums:
https://forums.dayz.com/forum/136-official/
DayZ Wiki:
https://community.bistudio.com/wiki/...
Parameters
PARAMETERS | VALUES | INFO |
---|---|---|
-u -update |
server mod all |
Update server or mods or both to latest version. |
-s -server |
start stop |
Start server or stop running server/servers. |
-lp -launchParam |
default user |
Must to be used in combination with -s/-server. Select which file with server launch parameters will be used (default or user). |
Examples : Command line
Open Main menu:
C:\foo> .\Server_manager.ps1
Update server:
C:\foo> .\Server_manager.ps1 -update server
Update both server and mods and start server with user config:
C:\foo> .\Server_manager.ps1 -u all -s start -lp user
Stop running servers:
C:\foo> .\Server_manager.ps1 -s stop