- Thread Author
-
- #21
I have good news and I have bad news. Bad news first. I made the USB drive and ran it. It failed, and I lost everything. Blue screen of death.
Good news, I was able to recover using the same USB and 22H2 was installed. It would only work as a new install.
Medium news, my files are still there, in windows.old. I just have to figure out how to get them back.
Good news, I was able to recover using the same USB and 22H2 was installed. It would only work as a new install.
Medium news, my files are still there, in windows.old. I just have to figure out how to get them back.
- Joined
- Mar 14, 2023
- Messages
- 96,981
Glad you got to a working 22H2 install again — and yes, when Setup can’t do an in-place upgrade, it sometimes forces the issue and you end up with the clean install +
1) First: protect
Windows can automatically remove
The main folders to restore:
Open Command Prompt (Admin):
Then retry the copy.
If you tell me what you use for the music service (app name), I can tell you exactly what folders/settings are worth restoring (some apps store important config under
2) What are the most important things to recover (Documents, music library folders, email, browser bookmarks, a specific app’s data)?
Windows.old situation.1) First: protect Windows.old (don’t let Windows delete it)
Windows can automatically remove C:\Windows.old (Storage Sense/Disk Cleanup, or after some time). Before you do anything else:- Turn off Storage Sense:
Settings → System → Storage → Storage Sense → Off - Back it up (best): copy the whole
C:\Windows.oldfolder to an external drive if you have one.
2) Get your personal files back (safe method)
Your old files will usually be here:C:\Windows.old\Users\<YourOldUsername>\The main folders to restore:
- Desktop
- Documents
- Downloads
- Pictures
- Music
- Videos
Easiest manual copy
Open two File Explorer windows:C:\Windows.old\Users\<OldName>\C:\Users\<NewName>\
Faster/safer copy with a command (recommended)
Open Command Prompt (Admin) and run (edit names as needed):
Code:
robocopy "C:\Windows.old\Users\OLDNAME\Documents" "C:\Users\NEWNAME\Documents" /E /XJ /R:1 /W:1
robocopy "C:\Windows.old\Users\OLDNAME\Desktop" "C:\Users\NEWNAME\Desktop" /E /XJ /R:1 /W:1
robocopy "C:\Windows.old\Users\OLDNAME\Downloads" "C:\Users\NEWNAME\Downloads" /E /XJ /R:1 /W:1
robocopy "C:\Windows.old\Users\OLDNAME\Music" "C:\Users\NEWNAME\Music" /E /XJ /R:1 /W:1
robocopy "C:\Windows.old\Users\OLDNAME\Pictures" "C:\Users\NEWNAME\Pictures" /E /XJ /R:1 /W:1
robocopy "C:\Windows.old\Users\OLDNAME\Videos" "C:\Users\NEWNAME\Videos" /E /XJ /R:1 /W:1
/XJ prevents robocopy from getting stuck in junction loops.3) If you get “Access denied” (permissions)
That’s common after a clean install. Fix it by taking ownership of the old profile folder:Open Command Prompt (Admin):
Code:
takeown /F "C:\Windows.old\Users\OLDNAME" /R /D Y
icacls "C:\Windows.old\Users\OLDNAME" /grant %username%:F /T
4) Programs won’t “come back” automatically
A clean install means apps must be reinstalled. Do not copyProgram Files back and expect them to work.If you tell me what you use for the music service (app name), I can tell you exactly what folders/settings are worth restoring (some apps store important config under
AppData).5) After recovery: check stability / BSOD
Since you had a BSOD during the first attempt, if you see any more blue screens now, grab:C:\Windows\Minidump\(zip the newest.dmpfiles)- The exact STOP code shown on the blue screen
Quick questions
1) What is your old username folder name underC:\Windows.old\Users\?2) What are the most important things to recover (Documents, music library folders, email, browser bookmarks, a specific app’s data)?