If you want to restore an MBR backup to a UEFI platform, the image must be converted afterward.
1. Volume recovery (complete)
- Make sure you have created an Actiphy Windows PE environment before you start.
- Start the AIP PE environment on the new empty machine.
- Click on "Recovery" -> "Volume Recovery".
- Select the directory for the backup image and click "Next".
- Right-click in the left area of the target disk (highlighted in yellow) and select "Initialize disk".
- In the next overview, select "MBR (Master Boot Record)".
- Select the entire source data carrier by right-clicking in the yellow area and selecting "Disk 0 - Basic (MBR)".
- Confirm the message to delete all data with "OK".
- Click on "Next" and then on "Done".
- Wait until the restoration is complete and check in the "Dashboard" overview whether the partitions have the same layout as the source medium.
- Go to "Tools" -> "Launch Command Prompt".
- Run the following commands line by line:
mbr2gpt /validate /disk:0
mbr2gpt /convert /disk:0
- The result should look like the following screenshot:
- If you do not receive any feedback after executing the commands, please check as mentioned in point 1 that the necessary files are integrated into the AIP PE environment.
- Now restart the machine via "Operation" -> "Exit" -> "Reboot".
2. Volume recovery (single)
If you only want to back up individual partitions, you can also do this under Volume Restore. The procedure for restoring individual volumes differs in some steps from a complete restoration.
- Make sure you have created an Actiphy Windows PE environment before you start.
- Start the AIP PE environment on the new empty machine.
- Click on "Recovery" -> "Volume Recovery".
- Select the directory for the backup image and click "Next".
- Right-click in the left area of the target disk (highlighted in yellow) and select "Initialize disk".
- In the next overview, select "MBR (Master Boot Record)".
- Mark the desired partition by right-clicking in the yellow marked area and selecting "Disk 0 - (MBR)" "Unallocated XX GB".
- Proceed according to the same principle with other partitions.
- You will receive another query for the partition with the operating system. Confirm this with "Yes".
- Confirm the message to delete all data with "OK".
- Click on "Next" and then on "Done".
- Wait until the restoration is complete and check in the "Dashboard" overview whether the partitions have the same layout as the source medium.
- Go to "Tools" -> "Launch Command Prompt".
- Run the following commands line by line:
mbr2gpt /validate /disk:0
mbr2gpt /convert /disk:0
- The result should look like the following screenshot:
- If you do not receive any feedback after executing the commands, please check as in point 1 that the necessary files are integrated into the AIP PE environment. If you have any problems, follow the troubleshooting steps.
- Now restart the machine via "Operation" -> "Exit" -> "Reboot".
3. Add RAID / Storage driver
- Start the Windows PE recovery environment from our software and select "Tools" -> "Command line".
- Enter this command to mount the driver on the Windows drive:
dism /Image:C:\ /Add-Driver /Driver:Z:\driver\XXX.inf
. The path / driver storage location must be adjusted depending on the system.
4. Troubleshooting
The message "Cannot find partition(s) for disk 0" can occur if no partition with a valid boot configuration is found. To fix this, follow the steps below.
- Find out the drive on which the boot configuration is written (usually C - the letters can vary in the PE environment).
- Go to "Tools" -> "Launch Command Prompt" and enter the following commands line by line:
diskpart
sel disk 0
list volume
- In our example, Volume 2 is the supposed C partition.
- Exit diskpart using "Exit".
- The following command checks that the Boot folder exists. If this is not available, check the other volumes using the drive letter.
dir /a E:\
- Check if the folder "Boot" is available. This folder contains the files which are required to boot the system.
dir /a E:\boot
- The following command creates an overview of all boot configurations. The incorrect configuration contains "ramdisk = [unknown]".
bcdedit /store E:\boot\Bcd /enum all
- Mark the GUID of the identifier with the left mouse button pressed and copy it by clicking the right mouse button.
- Execute the following command to delete the faulty boot entry.
bcdedit /store E:\boot\bcd /delete <INSERT GUID>
- You can then start the conversion from MBR to GPT again.
mbr2gpt /validate /disk:0
mbr2gpt /convert /disk:0
Comments
0 comments
Article is closed for comments.