Jump to content

Platform Rules

NOTE: The following rules may be overwritten by specific category rules

If you have any questions, the answer may be in our FAQ

Back

# General

# PC

# Windows

$packageFullName = (Get-AppxPackage -Name Microsoft.MinecraftUWP).PackageFullName
if ([String]::IsNullOrEmpty($packageFullName)) {
    Write-Host "Could not get 'Microsoft.MinecraftUWP' package." -ForegroundColor Red
    return
}
$registryPath = "HKCU:SOFTWARE\Classes\Extensions\ContractId\Windows.Launch\PackageId\$packageFullName\ActivatableClassId\App\CustomProperties"
if (!(Test-Path -Path $registryPath)) {
    New-Item -Path $registryPath -ItemType RegistryKey -Force | Out-Null
}
Set-ItemProperty -Path $registryPath -Name "SupportsMultipleInstances" -Value 1 -Type DWORD

# Linux / MacOS

# Mobile

# Console

# Virtual Reality