Skip to content

Install server on Windows

Prerequisites

To install LeviLamina, you need one of the following Windows versions:

  • Windows 10
  • Windows 11
  • Windows Server 2019
  • Windows Server 2022
  • Windows Server 2025

To run Bedrock Dedicated Server for Minecraft, you need to install the following software:

Installing via lip

  1. Download the installer ends with setup.exe from here, execute it to install lip.
  2. Begin by creating a directory for your Minecraft server and navigating into it:
    Bash
    1
    2
    mkdir myserver
    cd myserver
    
  3. Then, install LeviLamina (bundled with Bedrock Dedicated Server) using lip:
    Bash
    1
    2
    3
    4
    5
    # Install the latest version
    lip install github.com/LiteLDev/LeviLamina
    
    # Install a specific version (replace x.y.z with the desired version)
    lip install github.com/LiteLDev/LeviLamina@x.y.z
    
  4. Launch your server by running:
    Bash
    1
    ./bedrock_server_mod.exe
    

Find the available version numbers in the releases.

If you want to upgrade LeviLamina, run the following command:

Bash
1
2
3
4
5
# Update to the latest version
lip update github.com/LiteLDev/LeviLamina

# Update to a specific version (replace x.y.z with the desired version)
lip update github.com/LiteLDev/LeviLamina@x.y.z

Warning

To ensure data security, please do not update LeviLamina in the same directory when upgrading between Minecraft versions. We recommend installing the new version in a separate folder, then copying the worlds directory and updating the configuration as needed.

Finding Mods

Before adding mods, explore your options. The best source is Bedrinth, although you can discover many elsewhere around the web.

Installing Mods

Most mods, especially those listed on Bedrinth, can be installed by pasting the provided command. For example, to install LeviAntiCheat:

Bash
1
lip install github.com/LiteLDev/LeviAntiCheat

Follow additional instructions provided by individual mod developers when needed.