Skip to content

SRS Server (WIP)

OzDeaDMeaT edited this page May 2, 2021 · 18 revisions

This page is aimed at Dedicated Server setups. If you find any information in this wiki/documentation which requires correction or updating, please leave a comment, contact one of the contributors, or leave a message on the SRS discord.

Contents

Methods of Starting SR-Server

In this section we will cover two methods of initialization for SR-Server. The first is PowerShell and the second is a Command Prompt.

PowerShell Initialization Methods

Create a File called Start_SRS.ps1, open the file in your code / text file editor of choice. Copy the Code snippet below into the file.

$srsdir = "<INSERT YOUR SRS INSTALL FOLDER HERE"

$srsEXE = "$srsdir\SR-Server.exe"

start-process $srsexe -WorkingDirectory $srsdir

Clone this wiki locally