Get started quickly
Follow these steps to build and run Minecraft Consoles on Windows. This guide focuses on getting you playing as quickly as possible.Install Visual Studio 2022
Download and install Visual Studio 2022 with the following workloads:
- Desktop development with C++
- Windows 10 SDK (or newer)
The Community edition is free and works perfectly for this project.
Open the solution
Double-click the
MinecraftConsoles.sln file to open the project in Visual Studio 2022.Configure build settings
In Visual Studio, set your build configuration:
- Configuration: Debug (recommended) or Release
- Platform: Windows64
Alternative: CMake build
If you prefer using CMake instead of Visual Studio’s solution file, you can build from the command line.Configure the project
Open PowerShell in the project directory and run:
You can specify your Visual Studio instance explicitly:
First launch
When you first launch the game:- You’ll see the classic Minecraft Console Edition Tutorial World
- Use the keyboard and mouse controls to navigate
- Press
F11to toggle fullscreen mode - Press
Escto access the pause menu
Quick controls reference
Here are the essential controls to get you started:| Action | Key |
|---|---|
| Move | W A S D |
| Jump | Space |
| Sneak | Shift (Hold) |
| Inventory | E |
| Break block | Left Click |
| Place block | Right Click |
| Pause | Esc |
| Fullscreen | F11 |
Playing multiplayer
Minecraft Consoles includes basic LAN multiplayer support:Host a game
When you create or load a world, it automatically advertises on your local network.
- Game port: TCP
25565 - Discovery port: UDP
25566
Join a game
Other players on the same LAN can find your session in the Join Game menu.
This feature is based on LCEMP.
Next steps
Learn all controls
Master the complete keyboard and mouse controls
Build from source
Detailed compilation instructions and troubleshooting