F5F Stay Refreshed Software Operating Systems The "recover from a drive" option is absent from the troubleshooting options.

The "recover from a drive" option is absent from the troubleshooting options.

The "recover from a drive" option is absent from the troubleshooting options.

B
Bro76
Member
126
12-11-2025, 01:33 AM
#1
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.
B
Bro76
12-11-2025, 01:33 AM #1

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.

S
Sneakyginger8
Senior Member
580
12-14-2025, 07:35 AM
#2
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.
S
Sneakyginger8
12-14-2025, 07:35 AM #2

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.

P
pyromaani
Member
61
12-14-2025, 09:24 PM
#3
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?
P
pyromaani
12-14-2025, 09:24 PM #3

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?

S
sandieaak
Member
182
01-04-2026, 05:32 AM
#4
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?
S
sandieaak
01-04-2026, 05:32 AM #4

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?

M
Mega_Ryachu
Member
150
01-17-2026, 10:28 AM
#5
That's what I assumed but it didn't function correctly. Not like that, specialized software like MR won't help anymore.
M
Mega_Ryachu
01-17-2026, 10:28 AM #5

That's what I assumed but it didn't function correctly. Not like that, specialized software like MR won't help anymore.

B
BernyTheMan
Member
180
01-18-2026, 12:49 PM
#6
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.
B
BernyTheMan
01-18-2026, 12:49 PM #6

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.

L
lShadeKnightl
Junior Member
9
01-18-2026, 01:19 PM
#7
It seems the most straightforward and useful information I've encountered so far. Thank you.
L
lShadeKnightl
01-18-2026, 01:19 PM #7

It seems the most straightforward and useful information I've encountered so far. Thank you.

J
JohnP1021
Member
68
01-19-2026, 06:45 PM
#8
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 /ImageFileBig Grin:\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.
J
JohnP1021
01-19-2026, 06:45 PM #8

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 /ImageFileBig Grin:\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.