Installing agms server on Windows

Prerequisites

Before you begin, please download .NET 8.0. Just a runtime alone will suffice.

Install the agms Server

1. Download

Obtain the file agms-win.zip.

2. Extract

Unzip it in a directory, for example 'C:\agms'

3. Register a Windows Service

Open the command prompt as administrator and register the server by executing the following command:

sc create agms binPath="c:\agms\agms.exe" start=auto

4. Start the Server

To start the server, run:

sc start agms

Stopping and Uninstalling the Server

To stop the server, use:

sc stop agms

To uninstall the server:

1. Ensure the server is stopped:

sc stop agms

2. Unregister the Windows service:

sc delete agms