The "recover from a drive" option is absent from the troubleshooting options.
The "recover from a drive" option is absent from the troubleshooting options.
I recently swapped out my motherboard. before that, it was very strange. one of the odd behaviors was preventing my SSD (my main drive) from showing up as a bootable option in my boot settings. today, I made a recovery drive, wiped the SSD, installed a fresh Windows copy, and the issue was fixed. however, when I went into troubleshooting options for recovering from a drive, that feature wasn’t available. i checked the USB connection, tried different ports, restarted several times, but it still doesn’t work! Windows functions normally, but I can’t access this option.
The process of creating "Recovery drive" involved making a complete backup of the disk using software such as Macrium Reflect or similar, transferring all files to another disk before reinstalling Windows. This allowed access to the data afterward.
Uncertain about what you require assistance with?
You swapped the motherboard. This typically demands reinstalling the operating system.
You mentioned you did that.
What does the "recovery drive" refer to? Which software were you using to create it?
What data is it intended to restore?
there’s a program in windows within the recovery tool next to the “create a restore point” choice. choosing it bundles all your files onto a USB drive and compresses them, then installs software to help restore your computer automatically. after restarting and pressing shift+restart, you’ll find a “recover from drive” option under troubleshooting, but it’s missing. does that make it clearer?
That's what I assumed but it didn't function correctly. Not like that, specialized software like MR won't help anymore.
System image is only valid for the original computer, you created it.
You modified the motherboard, so this is now a different machine.
Restoring the system image won't work on another computer.
It seems the most straightforward and useful information I've encountered so far. Thank you.
:\sources\reconstruct.wim /index:1 /MountDir:C:\MOUNT /Optimize /Checkintegrity OS drive contents are stored as WIM files (Windows Imaging Format). These files can be mounted using DISM.
1. Set up a folder where the archive contents will be attached
C:\MOUNT
2. Mount the image (assuming the archive is on drive D:, change letter as needed)
Code:
Dism /Mount-Image /ImageFile
:\sources\reconstruct.wim /index:1 /MountDir:C:\MOUNT /Optimize /Checkintegrity
3. Retrieve data from the archive in
C:\MOUNT and relocate it elsewhere
4. Remove the WIM archive
Code:
Dism.exe /UnMount-Image /MountDir:C:\MOUNT /Discard
There should likely be several archive files such as
D:\sources\reconstruct.wim
D:\sources\reconstruct.wim2
D:\sources\reconstruct.wim3
You'll need to repeat this process for each file.