Minecraft Installer 'File System Error': How to Fix It

A file system error during Minecraft installation usually means the installer can’t write files to the target location. The cause is almost always permissions, corrupted Windows Store components, or leftover files from a previous installation.

For Minecraft Java Edition (launcher installer)

Run as administrator: Right-click the Minecraft installer > Run as administrator. Most file system errors on Java Edition installation are simply permission issues that admin mode resolves.

Clear previous installation files: If Minecraft was previously installed, leftover files can conflict with the new installer. Navigate to %AppData%\.minecraft and delete the folder, then try reinstalling.

Check available disk space: The installer needs space to extract and write files. Confirm there’s at least 1-2GB free on the target drive.

For Minecraft Bedrock Edition (Microsoft Store / Windows app)

Bedrock installs through the Microsoft Store (or Xbox app), and file system errors there are usually related to Windows Store infrastructure:

Reset the Windows Store:

  1. Press Windows + R > type wsreset.exe > Enter
  2. A blank Command Prompt window opens and closes automatically
  3. The Store relaunches – try the installation again

Re-register Windows Store apps:
Open PowerShell as administrator and run:

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

This re-registers all Store apps and resolves broken Store infrastructure.

Check Windows Update: Store app installations can fail if Windows is missing updates that the app depends on. Run Windows Update and install all pending updates before retrying.

Reset the Xbox app: Settings > Apps > Xbox > Advanced options > Reset. Then try installing Minecraft again.

General fix for both editions

Disable antivirus temporarily: Security software can interfere with file writes during installation. Disable real-time protection, run the installer, then re-enable.

Check for disk errors: Run chkdsk C: /f in an elevated Command Prompt to scan for and fix filesystem errors on the drive. Requires a restart to run on the system drive.

The Windows Update dependency for Store apps is something that surprises people. Some game updates require specific Windows runtime components that come via Windows Update. Keeping Windows current isn’t just about security – Store apps depend on it for installation too.

chkdsk being worth running for persistent file system errors is correct. if an installer consistently fails with file system errors on a specific drive, that drive may have filesystem corruption or bad sectors. chkdsk identifies and marks bad sectors so the OS doesn’t write to them, and can fix logical filesystem errors.

The PowerShell re-register command is a useful nuclear option for Store infrastructure issues beyond just Minecraft. When Windows Store apps are in a broken state – won’t install, won’t update, won’t launch – this command re-registers the entire Store app infrastructure and fixes most cases.

wsreset.exe is the first thing to try for any Microsoft Store installation issue. it’s a one-command fix that clears the store cache and resolves most store-level errors. takes thirty seconds and has a high success rate for bedrock edition install failures specifically.

the run as administrator fix for java edition being this simple is something i wish someone told me the first time i hit this error. spent an hour looking for complex solutions when right-clicking the installer and running as admin was the entire fix.