Skip to content

Latest commit

 

History

History
73 lines (50 loc) · 2.5 KB

README.md

File metadata and controls

73 lines (50 loc) · 2.5 KB

Caution

Not approved by or associated with Mojang or Microsoft.
This project doesn't allow you to pirate Minecraft: Bedrock Edition, you must own it.

Bedrock Updater

Download, update & install Minecraft: Bedrock Edition without the Microsoft Store.

Features

  • Instantly download, update & install Minecraft: Bedrock Edition:

    • Minecraft

    • Minecraft Preview

  • Decouples the game from the Microsoft Store & Windows Update.

    • Making it possible to deploy Minecraft: Bedrock Edition on systems where these components aren't accessible.
  • Installs any dependencies required for Minecraft: Bedrock Edition.

Prerequisites

  • A Microsoft account that owns Minecraft: Bedrock Edition.

    • To sign in:

      • Open Windows Settings.

      • Go to Accounts → Email & accounts.

      • Click Add an Account.

  • Hardware & software that fulfill the system requirements for Minecraft: Bedrock Edition.

Usage

  • Install Bedrock Updater with your preferred method.

  • From the Windows Start Menu:

    • Start Bedrock Updater for Minecraft.

    • Start Bedrock Updater Preview for Minecraft Preview.

Note

If you have downloaded Bedrock Updater manually, pass /Preview to the executable for Minecraft Preview.

Installation

Manual

Download the latest release from GitHub Releases.

Install

scoop bucket add games
scoop install bedrockupdater

Minecraft: Bedrock Edition

Run the following script in PowerShell to uninstall Minecraft: Bedrock Edition & Xbox Identity Provider.

$ProgressPreference = $ErrorActionPreference = "SilentlyContinue"

Get-AppxPackage | ForEach-Object { if ($_.Name -in @("Microsoft.MinecraftUWP", "Microsoft.MinecraftWindowsBeta", "Microsoft.XboxIdentityProvider")) { Remove-AppxPackage $_ } }

$ProgressPreference = $ErrorActionPreference = "Continue"

Building

  1. Download the following:

  2. Run the following command to compile:

    dotnet publish "src\BedrockUpdater.csproj"