Changing users on Xiaomi devices is a procedure that both beginners and experienced owners face, depending on the type of gadget (smartphone, tablet or TV) and the firmware version (MIUI Android TV) The algorithm of actions can be very different, for example, on smartphones with a different MIUI 14 and later available multiplayer, and on TVs Mi TV β Only linking to a Xiaomi or Google account.
In this article, we will discuss all the current ways to change users, including the nuances for root-access devices, locked devices and cases when the previous owner did not untidy his account. Particular attention will be paid to the risks of data loss if you delete a profile incorrectly - this is a common problem when buying used equipment. If you just need to log out, skip the first two sections and go to the untidy instructions.
1. When you need to change the user to Xiaomi
Not all owners understand the difference between changing an account and adding a new user, and here are the key situations where the procedure is needed:
- π± Buying a used device β the previous owner did not delete his profile or Mi Account.
- π¨βπ©βπ§βπ¦ Family Use β Create a separate profile for a child with restrictions.
- π Device locking β the phone requires old account data after resetting.
- πΊ Change of TV Owner β Google Account Linking Interferes with Setup.
- π οΈ Application Testing β Developers Need a Clean Profile with No Personal Data.
On smartphones Xiaomi with MIUI There are two types of profiles: Primary User (device owner) and Additional User (limited user). TV There is no multiplayer mode β there only works binding to Xiaomi or Google accounts.
β οΈ Note: If you bought a used device and it requires the data of your old Mi Account after a reset, a simple change of user will not help.
2. Ways to change the user on Xiaomi smartphones (MIUI)
On smartphones with MIUI 12-14: Three options for changing users:
- Adding a new user (without deleting the old one).
- Remove the current profile with the transition to the main one.
- Reset to factory settings (full cleaning).
Let us examine each method in detail.
Adding a new user (multi-user mode)
This is a good method if you want to leave an old profile but create a new one, for example, for a family member or testing apps. MIUI 13/14:
Turn off the lock screen password
Connect to Wi-Fi
Battery charge > 30%
Make a backup copy of the data-->
- Open Settings β System β Additional β Multiplayer mode.
- Click Add User.
- Confirm the action at the request of the system.
- Set up a new profile (you can skip the initial setting).
The new user will get a clean system without applications and main profile data.
- π« No access to SMS Calls and calls (only on the main profile).
- π« System updates cannot be installed.
- π« Restricted access to certain settings (e.g. Developers).
β οΈ Note: Some models (e.g. Redmi Note) 10 Pro) Multiplayer mode can be hidden. To activate it, run the command to ADB: adb shell pm create-user --profileOf 0 New User
2.2. Removal of the current user
If you need to delete your profile completely (for example, before selling your device), do the following:
- Go to Settings β System β Additional β Multiplayer mode.
- Choose the profile you want to delete (not the main one!).
- Click on the cart icon or Delete the user.
- Confirm the action.
Important: The main user (the owner of the device) cannot be removed through this menu.
| Action. | Main user | Additional user |
|---|---|---|
| Removal through settings | β No. | β Yes. |
| Access to SMS/call | β Yes. | β No. |
| Installation of updates | β Yes. | β No. |
| Use of Google Pay | β Yes. | β No. |
Reset to factory settings (full cleaning)
It's a radical method that deletes all data, including users, accounts and apps, if:
- π You need to transfer the device to a new owner.
- π Device blocked by old Mi Account.
- π The system is unstable due to profile conflicts.
Instructions for MIUI 14:
- Open Settings β About the phone β Reset settings.
- Choose to erase all data.
- Enter your password (if installed).
- Confirm the reset.
β οΈ Note: After reset, the device may require the old Mi Account if the Find Device function has been activated.
π‘
Remove before resetting SIM-card and memory card β this will speed up the process and prevent accidental formatting of the external drive.
3. Change of user on Xiaomi TVs (Mi) TV)
On Xiaomi TVs (Mi series) TV A2, Mi TV Q2, Redmi Smart TV) There's no multiplayer mode. Instead, it's using account binding:
- π§ Xiaomi account (Mi Account) β for synchronization of settings and access to Mi Home.
To change the user, you need to unplug old accounts and link new ones.
3.1. untied Xiaomi account (Mi Account)
- Open Settings β Accounts and Security β Mi Account.
- Select Exit (or Delete your account on some models).
- Enter the password from the account for confirmation.
- Confirm exit.
If the TV requires the data of the old account after reset, use the unlock instructions.
3.2. Untie Google Account
Google account on Mi TV remove:
- Go to Settings. β Accounts and security β Google.
- Select a linked account.
- Click Delete Account.
- Confirm the action.
After deleting both accounts, the TV can be reset to factory settings:
- Open Settings β Device β Reset settings.
- Choose to erase all data.
- Enter. PIN-code (if installed).
What if the TV asks for an old account after a reset?
4 Unlocking a device tied to someone elseβs account
If you bought a used Xiaomi device and it requires the old Mi Account data after a reset, you will need an official unlock.
Here's a step-by-step algorithm:
- Contact the previous owner and ask them to untie the device via i.mi.com (Find Device section).
- If the connection is not possible, collect proof of purchase: π Check or sales contract. πΈ Photo of a box with a serial number. π± IMEI Devices (you can find out via *#06#).
Contact us for support of Xiaomi
- π Fill out the form at account.xiaomi.com.
- π§ Send scans of documents to support mail@xiaomi.com.
- Wait for the answer β unlocking takes 3 to 7 days.
Cost of service: free if you provide all the documents, otherwise you may need to pay (about 10-30)$ depending on the region).
β οΈ Warning: Do not use "grey" ways to unlock through third-party services: π¨ Blocking IMEI. π Loss of warranty. π» Installation of unofficial software with viruses.
π‘
Officially unlocking through Xiaomi support is the only safe way to remove someone elseβs Mi Account from a used device.
5. Change of user on devices with root access
If your Xiaomi device has an unlocked bootloader and root rights, you can manage users through ADB It's a file system, and it's a method that's suitable for advanced users.
5.1. User management through ADB
The work will require:
- π₯οΈ Computer with installed ADB and Fastboot.
- π± Included debugging by USB device-wise.
- π Unlocked loader.
Major teams:
# View the list of users
adb shell pm list users
Delete the user (replace the ID with the current one)
adb shell pm remove-user ID_User
Create a new user
adb shell pm create-user New name
Switch to another user
adb shell am switch-user ID_User5.2. File editing users.xml
In Android, user information is stored in a file. /data/system/users/users.xml. To edit it:
- Connect the device to the PC and open ADB Shell.
- mount the section for recording: adb shell su mount -o rw,remount /data
- Edit the file (for example, via nano or copy to PC).
- Reset the device.
β οΈ Attention: Incorrect editing users.xml This can cause a cyclical reboot of the device. Before making changes, back up the file: adb pull /data/system/users/users.xml
6. Frequent errors and their solutions
When you change to Xiaomi, users face typical problems, and here are the most common ways to fix them:
| Mistake. | Reason. | Decision |
|---|---|---|
| "It is impossible to delete the user" | Attempt to remove the main user | Use the resetting settings. |
| "Device locked in Mi Account" | The Find Device function is activated | Contact us for support of Xiaomi |
| βThere is not enough memory for a new user.β | Place taken in /data section | Clear the cache or delete unnecessary data |
| "There is no 'Multi-user mode' clause" | Hidden by the manufacturer | Activate through ADB (see section 2.1) |
If your problem is not described in the table, check:
- π± Version MIUI β Some features are not available on old firmware.
- π Firmware region - on Chinese versions (China) ROM) Google may not have any options.
- π bootloader status β a blocked bootloader limits changes.
7 Security: How to Protect Your Device
To avoid problems with future sale or transfer of the device, follow these rules:
- π Untie accounts before reset: Mi Account (via i.mi.com). Google Account (in device settings).
- π± Check the Find Device status β disable the feature in Settings β Mi Account. β Find Device.
- π Keep the purchase documents β they will be needed to unlock.
- π Update the firmware - on new versions MIUI fewer bugs with users.
If you are buying a used device, you must:
- π Check the status of Mi Account by ##6484## (test code to check locks).
- π Ask the seller to make a reset with you.
- π³ Use secure payment methods (for example, a transaction through a bank).
π‘
Before buying a used Xiaomi check IMEI on imei.info, this will show if the device is blacklisted.