Hi Yiu,
Thanks for the follow-up! That message likely means either the SoftwareDistribution folder doesn’t exist, or a folder named SoftwareDistribution.old already exists, preventing the rename.
- Stop the Windows Update services again with these commands
net stop wuauserv
net stop bits
- Check if the .old folder already exists
Run this command: dir C:\Windows | findstr /I "SoftwareDistribution.old"
If it shows a match, delete the old backup folder:
rmdir /S /Q C:\Windows\SoftwareDistribution.old
- Now rename the folder again: ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
- Restart the update services:
net start wuauserv
net start bits
This should resolve the rename issue and help reset the Windows Update cache. Let me know if anything else pops up!
Best,