How to Backup the EFI System Partition

The EFI partition contains the boot files and the boot configuration database (BCD). Some OEMs also store the BIOS image backups and additional tools in the EFI partition. This post explains how to back up the files in the EFI partition.

Backup the EFI System Partition

The EFI partition has a special partition identifier, so Windows doesn’t assign a drive letter to it by default. To access the partition and back up the data from that partition, please do the following:

Open Command Prompt (admin) and run the following commands:

mountvol Y: /s

robocopy y:\ C:\Backup /mir

bcdedit /export C:\Backup\EFI\Microsoft\Boot\BCD

The above commands recursively copy all files from the EFI partition to the C:\Backup folder. The BCD is also exported.

After running the commands, verify that the BCD, boot files, and OEM tools (if any) have been successfully copied to C:\Backup. You may then move the C:\Backup folder to an external drive if required.



Related articles

How to Resize the EFI System Partition in Windows

How to Rebuild the EFI Boot Partition, BCD and Boot Files

How to Fix the EFI Boot Partition’s ID Using DiskPart


One small request: If you liked this post, please share this?

One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:
  • Pin it!
  • Share it to your favorite blog + Facebook, Reddit
  • Tweet it!
So thank you so much for your support. It won't take more than 10 seconds of your time.

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a ten-time recipient of the Microsoft MVP award in Windows Desktop Experience (Windows Shell), from 2003 to 2012. Ramesh founded Winhelponline.com in 2005.

Leave a Comment