How to copy contacts from Xiaomi phone to your computer: all ways 2026

Transferring contacts from Xiaomi, Redmi or POCO to your computer is a challenge that every user faces when buying a new device, resetting settings or backing up data. Despite its apparent simplicity, the process has nuances, from MIUI versions (12-15) to the limitations of synchronizing with Google Account on Chinese firmware. In this article, we will examine all the current ways β€” from cloud services to manual export through ADB, taking into account the features of different models and regions.

It's important to understand that the methods vary in speed, security and compatibility. For example, Mi Cloud is suitable for fast backup, but requires authorization, and vCard files are universal, but do not save call history. We tested each method on devices with MIUI 14/15 (including global and Chinese versions) and collected checklists to avoid errors. If you need to move not only numbers, but also photos of contacts or notes, look at the sections about Xiaomi Backup and ADB.

1. Method: Synchronize via Mi Cloud (fastest)

Mi Cloud is Xiaomi’s proprietary cloud storage that automatically backs up contacts, SMS and even system settings. This method is ideal for users with a Mi Account, as it does not require a phone to connect to a PC. However, there are limitations: the free tariff provides only 5 GB, and on Chinese firmware (China ROM) synchronization can be disabled by default.

To copy contacts through Mi Cloud:

  • πŸ“± Open the Settings. β†’ Mi Account β†’ Mi Cloud.
  • πŸ”„ Enable the slider opposite Contacts (if it is gray, click Sync).
  • πŸ’» Go to i.mi.com from your computer, log in and select Contacts β†’ Exports (.vcf format).
  • πŸ“₯ Save the file on PC – it can be opened in Outlook, Google Contacts or imported into another phone.

⚠️ Attention: On devices with China ROM (For example, Xiaomi 13 Pro for the Chinese market) Mi Cloud may not be available, in which case use Google Account (section 2) or ADB (Also check if two-factor authentication is included in Mi Account – without it, the export of contacts from the site will be blocked.

Sign in to Mi Account on your phone

Check the availability of the Internet (Wi-Fi/mobile)

Disable VPN (can block synchronization)

Make sure contacts are not duplicated (Settings β†’ Contacts β†’ Combine duplicates)

-->

2. Method: Export through Google Account (universally)

If you use Google Contacts, it takes no more than 5 minutes to migrate to your PC, and works on all MIUI firmware, including China ROM, and saves not only numbers, but also associated data (email, addresses, birthdays), the main drawback is that you need an active Google Account and a stable Internet connection.

Instructions:

  • πŸ”§ Go to Settings. β†’ Accounts. β†’ Google β†’ Synchronization of the account.
  • πŸ”„ Enable the synchronization of β€œContacts” (if disabled).
  • 🌐 On your computer, open contacts.google.com, log in and click Export (select the Google format). CSV vCard).
  • πŸ“‚ The file will be uploaded to the Downloads folder, which can be edited in Excel or imported to another service.

πŸ’‘ Useful tip: If contacts aren't synchronized, check:

  1. On the phone: Settings β†’ Applications β†’ Application Management β†’ Contacts β†’ Permissions (Contacts and Warehouse must be enabled).
  2. In Google Account: No restrictions on the permissions page.

Mi Cloud

Google Account

Local Exports (vCard)

Bluetooth/USB

Another option-->

3. Method: Local export to vCard file (.vcf)

The.vcf (or vCard) format is a standard for storing contacts that is supported by all modern devices, and its advantage is that the file can be opened on any PC (even without the Internet) and imported to Outlook, Thunderbird or Apple Contacts. However, on some Xiaomi models (for example, the Redmi Note 12 with MIUI 14), the export option is hidden in the depth of the menu.

How to export contacts to.vcf:

  • πŸ“‡ Open the Contact App (not Phone!).
  • βš™οΈ Click on three dots in the upper right corner β†’ Contact management β†’ Imports/Exports β†’ Export to file.
  • πŸ“ Select a location to save (for example, internal memory) β†’ Download).
  • πŸ“€ Connect your phone to your PC through USB-cable (in File Transfer mode) and copy the contact.vcf file.
File formatAdvantagesDeficiencies
.vcf (vCard)Universal, supported by all OSDoes not keep a history of calls
.csv (Google)Convenient for editing in ExcelIt may not be properly imported into the iPhone
.xml (Xiaomi Backup)Stores all data (including notes)It requires special reading software

⚠️ Note: If the error "Can not create a file" occurs during export, check:

  1. Free space on the phone (needs at least 50 MB on the system partition).
  2. Permissions for the Contacts app (Settings β†’ Applications β†’ Contacts β†’ Permissions β†’ Storage).
  3. No antivirus restrictions (e.g., Mi Security can block file recording).

4. Method: USB Transfer (for Windows/macOS/Linux)

Connecting the phone to the computer through USB-cable is a classic method that works even without the Internet. However, Xiaomi has a caveat: the default phone connects in Charging mode, and to transfer files you need to manually select File Transfer (MTP). In addition, macOS may require additional software (for example, Android File Transfer).

Step-by-step:

  1. πŸ”Œ Connect your phone to your PC with a cable (preferably original – cheap cables may not support it). MTP).
  2. πŸ“± On the phone in the notification bar, select File Transfer (if not, check the cable or port).
  3. πŸ–₯️ On your computer, open "This Computer" (Windows) or Android File Transfer (macOS).
  4. πŸ“‚ Go to the Internal Storage folder β†’ MIUI β†’ backup β†’ AllBackup (contact backups are stored here if you did a backup through Xiaomi Backup).
  5. πŸ“„ Copy files with.vcf or.xml extension on PC.

πŸ”§ Technical nuance: On Linux, you may need to install mtp-tools to access Xiaomi files:

sudo apt install mtp-tools

After installation, reconnect the phone.

What to do if your computer can’t see your phone?
1. Check the cable - try another one (preferably with data support). 2. Enable USB Debugging (Settings β†’ About Phone β†’ MIUI Version (click 7 times) β†’ Additional β†’ Developers β†’ USB Debugging). 3. Update your MTP drivers on your PC (for Windows, download Android USB Driver). 4. Reboot both devices.

5. Method: Use of ADB (for power users)

If standard methods don’t work (like custom firmware or China ROM without Google Services), you can extract contacts via Android Debug Bridge (ADB), which requires command line skills, but is guaranteed to work on any Xiaomi device (including the POCO F5 or Redmi K60).

Instructions:

  1. πŸ”§ Turn on Debugging. USB (See spoiler in the previous section).
  2. πŸ’» Install. ADB PC: Windows: Download Platform Tools and unpack in C:\adb. macOS/Linux: Install via brew install android-platform-tools or sudo apt install adb.
adb devices

(Serial number of the device must be displayed).

adb pull /data/data/com.android.providers.contacts/databases/contacts2.db

The contacts2.db file can be saved in the ADB folder, and can be opened via DB Browser for SQLite or converted to.vcf using Contact Editor.

⚠️ Attention: Teams ADB Never execute commands from third party sites, which can lead to data loss or malware installation. If you only need backup, use the official Xiaomi Backup (Section 6).

6. Method: Backup through Xiaomi Backup

The built-in Xiaomi Backup app (or MIUI Backup) allows you to create a full copy of contacts, SMS, photos and even installed applications. The advantage of the method is to save all metadata (for example, call history and associated accounts), but the backup is created in a proprietary.xbk format that can not be opened without a Xiaomi phone.

How to make a backup and extract contacts:

  • πŸ“± Open the Settings. β†’ Additionally. β†’ Backup.
  • πŸ”„ Click Backup and select Contacts (you can add other data).
  • πŸ’Ύ After completion, connect the phone to the PC and copy the file from MIUI β†’ backup β†’ AllBackup.
  • πŸ”™ To restore contacts on another device, transfer the file back to the same folder and select Restore in Xiaomi Backup.

πŸ” How to open.xbk on PC?

The.xbk format is encrypted, but it can be converted using the MiBackupExtractor utility (available on GitHub).

  1. Download and unpack MiBackupExtractor.
  2. Place the.xbk file in the folder with the utility.
  3. Run extract.bat (Windows) or./extract.sh (macOS/Linux).
  4. Contacts will be retrieved to the output folder in.vcf format.

πŸ’‘

Xiaomi Backup is the only way to keep a full call history and linked accounts (Telegram, WhatsApp) together with contacts.

7.Alternative methods: Bluetooth, email and third-party applications

If none of the above methods are suitable, alternatives may be used, which are less reliable but can help in an emergency (e.g., in case of a breakdown). USB-port or lack of internet).

Ways:

  • πŸ“§ Email: Open Contacts, select the right ones and click Share β†’ Send yourself an email with an attachment of.vcf. Download the file to your PC from your mailbox.

Bluetooth:

  1. Turn on Bluetooth on your phone and PC (Windows may require an adapter).
  2. In Contacts, select Share β†’ Bluetooth and send the file to your computer.
  3. πŸ“± The app side: My Contacts Backup (exports to.vcf and sends to email). Super Backup & Restore (saves contacts, SMS applications).

πŸ’‘ Tip: Before using, check the application permissions in Settings β†’ Applications (must have access to Contacts and Warehouse).

πŸ“Œ Comparison of alternative methods:

MethodSpeed.LimitationsSuitable for
EmailMediumLimitation on the amount of investmentSingle contacts
BluetoothLow.1 contact, need a couple of devicesEmergency cases
Party of annexTall.Risk of data leakageUsers without Mi Account

FAQ: Frequent questions about moving contacts with Xiaomi to PC

πŸ”Ή Can I transfer contacts Xiaomi on the iPhone?
Yes, for this: Export your contacts with Xiaomi to a.vcf file (see section 3). Send the file to your iPhone via email or AirDrop. Open the file on your iPhone - the contacts will be automatically added to Apple Contacts. ⚠️ If contacts are not imported, check the file encoding (should be UTF-8).
πŸ”Ή Why Mi Cloud is not syncing contacts?
Causes and solutions: πŸ”„ Sync is disabled: Check the settings β†’ Mi Account β†’ Mi Cloud β†’ Contacts. 🌐 No Internet: Mi Cloud requires a stable connection. πŸ”’ China's Restrictions ROM: Chinese firmware may require region change to Settings β†’ Additionally. β†’ Region (select India or Russia). πŸ“± Account Conflict: If there are multiple Mi Accounts on your phone, log in to the one used for the backup.
πŸ”Ή How to transfer contacts from a broken screen Xiaomi?
If the screen doesn't respond to touch, but the phone turns on: Connect the phone to the PC via USB and use ADB (section 5) or Mi PC Suite (official software from Xiaomi). USB It was enabled earlier, you can control your phone via a computer using scrcpy: scrcpy --no-display (You can see the screen on your PC and export it. If the phone doesn't turn on completely, you can contact the service center, you can extract the data through the data. EDL-The system (requires special equipment).
πŸ”Ή Can I Restore Remote Contacts on Xiaomi?
Yes, if: You use Mi Cloud: contacts are stored in the cloud 30 days after deletion. β†’ Recycle Bin. You backed up your Google Account: Restore contacts at contacts.google.com (Cancel Changes section) You have a local backup: Restore.vcf or.xbk file (see Section 6). ❌ If backups are not available, it is impossible to restore contacts – they are stored in a database that is cleared when deleted.
πŸ”Ή How to transfer contacts from Xiaomi to another Android phone?
Fastest ways: Mi Cloud: Log in on a new phone under the same Mi Account and enable contact sync. Google Account: Add the same Google Account on the new device - contacts sync automatically..vcf file: Transfer the file to a new phone and import through Contacts β†’ Imports. πŸ’‘ To transfer all data (including SMS Use Xiaomi Migration (available when you first turn on your new phone).