I’m sorry — that’s frustrating after the work you’ve done. The in‑place repair should normally keep programs and settings, but depending on the media you used (Rufus options) or if Setup fell back to a different install path, apps can be removed while user data remains. The good news: your files are likely recoverable and we can confirm whether KB5070773 installed. I’ll give short, safe checks and the exact recovery steps (you can do these now). Tell me which you want me to help with first and I’ll stay with you.
Immediate checks (safe — run in an elevated PowerShell)
1) Did the update actually install? (quick)
dism /Online /Get-Packages | findstr /I "KB5070773"
If that returns a line for KB5070773, the update is installed.
2) Is there a Windows.old (your previous installation)? (this is where removed apps’ program files & user data often remain)
Test-Path C:\Windows.old
Get-ChildItem C:\Windows.old -Force | Select-Object Name,Length -First 40
If C:\Windows.old exists it means Setup preserved your old installation and you can recover files and (in many cases) reinstall apps using installers from that folder.
3) What programs are currently installed (quick listing)
Run both (they list 64/32‑bit installed programs from the registry):
Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall* | Select DisplayName,DisplayVersion,Publisher | Format-Table -AutoSize
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall* | Select DisplayName,DisplayVersion,Publisher | Format-Table -AutoSize
This shows what’s currently registered as installed.
4) Check Program Files to see if large app folders are still present
dir "C:\Program Files" | Select-Object -First 40
dir "C:\Program Files (x86)" | Select-Object -First 40
If the folders for Office / Adobe are still present, you may be able to repair them. If not, they were removed.
If Windows.old exists — recover personal files now (recommended)
These copy commands move your Desktop/Documents/Pictures back to the current profile. Adjust <yourusername> or copy as needed.
Example (run as Admin — replace <username> with your account name):
robocopy "C:\Windows.old\Users\<username>\Desktop" "$env:USERPROFILE\Desktop" /E /COPYALL
robocopy "C:\Windows.old\Users\<username>\Documents" "$env:USERPROFILE\Documents" /E /COPYALL
robocopy "C:\Windows.old\Users\<username>\Pictures" "$env:USERPROFILE\Pictures" /E /COPYALL
Robocopy will skip duplicates and preserve timestamps. Use these for any folders you want restored.
If Windows.old is NOT present
- That means the repair probably removed apps and cleaned up the previous install. Personal data may still be in your user folders (check C:\Users\<username>), but program reinstalls will be required.
Reinstalling missing applications
- Microsoft Office: sign into your Microsoft account (account.microsoft.com) and re‑download Office if it’s a subscription, or run your installer if you have one. If you used a product key, make sure you have it saved; if not, sign in to your vendor account (or check any email receipts).
- Adobe Creative Cloud: sign into your Adobe account and reinstall from the Creative Cloud app.
- Chrome: download and reinstall from Google; your profile may still be in C:\Users\<username>\AppData\Local\Google if present.
Recover Start Menu / Taskbar customisations
- Those are typically lost during a repair. You’ll need to re‑pin apps to the Taskbar and rebuild Start layout; the Start menu layout can’t easily be restored unless you exported a layout earlier.
If you want to try to re‑register missing built‑in apps quickly (optional)
- This can restore some built‑in apps (not Office/Adobe):
Get-AppxPackage -AllUsers | Foreach { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" }
(Only run if you’re comfortable; it can take a while and may produce errors — it won’t restore third‑party apps.
If KB5070773 still not installed after repair
Run these three small diagnostics and attach the generated .txt files (or paste their content) and I’ll give the single next remedial command:
Select-String -Path "$env:windir\Logs\DISM\dism.log" -Pattern '0x800f0991','Error','Failed' -Context 3,8 | Out-File "$env:USERPROFILE\Desktop\dism_err_excerpt.txt" -Encoding ascii
dism /Online /Get-Packages | Out-File "$env:USERPROFILE\Desktop\Packages_full.txt" -Encoding ascii
Select-String -Path "$env:windir\Logs\CBS\CBS.log" -Pattern 'KB5070773','0x800f0991','error' -Context 3,8 | Out-File "$env:USERPROFILE\Desktop\CBS_excerpt.txt" -Encoding ascii
What I suggest right now (pick one)
A) Recover your personal files from C:\Windows.old (if present) — I can give the exact robocopy commands and wait while you run them.
B) Verify whether KB5070773 installed (run the DISM command above) — quick check, then we’ll decide next step.
C) If you want to stop for now and continue later, that’s OK — I’ll leave a checklist for the recovery steps you’ll need.
I’m sorry you lost the installed apps — that’s a painful side effect. You haven’t lost your personal files (very likely), and we can restore them and then reinstall the missing programs. Tell me which of A/B/C you want to do now and I’ll provide the exact single commands and wait.