Prerequisites
Before you begin, ensure that the .NET 8.0 Runtime is installed.
Installation Steps
1. Download
Download the latest windows version to your computer. File name should be similar to agms-win_x.x.x.x.zip.
2. Extract
Unzip the contents to a directory, for example C:\agms\.
3. Register as a Windows Service
Open Command Prompt as administrator and register the service with:
sc create agms binPath="C:\agms\agms.exe" start=auto
4. Start the Service
Start agms by running:
sc start agms
Upgrading to the newer version
1. Stop the agms service:
To stop the service:
sc stop agms
2. Replace the files in the installation directory with the new version files. DO NOT OVERWRITE the existing appsettings.json file, changes were made.
3. Start the agms service:
sc start agms
Stopping and Uninstalling agms
To stop the service:
sc stop agms
To uninstall:
1. Stop the service if it is running:
sc stop agms
2. Delete the Windows service:
sc delete agms
3. Optionally, remove the directory where you extracted the server files.