How to Install RconCli on Windows 10

RconCli is a console-based RCON client for managing game servers. By using RconCli, you can execute commands on your game server remotely. In this tutorial, we will guide you through the process of installing RconCli on Windows 10.

Prerequisites

Before you begin the installation of RconCli, ensure that your system meets the following requirements:

  • Windows 10 (64-bit)
  • .NET Framework 4.6.1 or higher
  • PowerShell

Installation

To install RconCli on Windows 10, follow the steps below:

  1. Download the RconCli zip file from the official GitHub repository: https://github.com/gorcon/rcon-cli.

  2. Extract the contents of the RconCli zip file to a new folder on your system.

  3. Open PowerShell as an administrator.

  4. Navigate to the folder where you extracted the RconCli files.

  5. Run the following command to import the module:

    Import-Module .\RconCli.dll
    
  6. Next, run the following command to connect to your server:

    Connect-Rcon -Address <your server IP address> -Port <your server port> -Password <your RCON password>
    

    Replace <your server IP address>, <your server port>, and <your RCON password> with your server details.

  7. You can now execute RCON commands by running the following command:

    Execute-Rcon <your RCON command>
    

    Replace <your RCON command> with the command you want to execute on your server.

Conclusion

By following the above steps, you have successfully installed RconCli on your Windows 10 system. You can now remotely execute RCON commands on your game server using PowerShell.