Update errors.
Proxynou
Posted messages
14
Status
Member
-
Anonymous user -
Anonymous user -
Hello everyone, and as usual, thanks in advance for your help.
It has been a long time, a very long time since my computer (running Windows 7 Home Edition) has been unable to install certain updates. I have already tried software like Microsoft Fix It (I think), but nothing works. Here are the errors:
WindowsUpdate_800B0100 "WindowsUpdate_dt000
WindowsUpdate_8024200D "WindowsUpdate_dt000
WindowsUpdate_00009C59 "WindowsUpdate_dt000
Thank you.
It has been a long time, a very long time since my computer (running Windows 7 Home Edition) has been unable to install certain updates. I have already tried software like Microsoft Fix It (I think), but nothing works. Here are the errors:
WindowsUpdate_800B0100 "WindowsUpdate_dt000
WindowsUpdate_8024200D "WindowsUpdate_dt000
WindowsUpdate_00009C59 "WindowsUpdate_dt000
Thank you.
2 answers
pistouri
Posted messages
19008
Registration date
Status
Contributor
Last intervention
Ambassadeur
8 723
Good evening,
try this:
https://support.microsoft.com/en-us/windows?ui=en-US&rs=en-001&ad=US
or:
https://forum.zebulon.fr/topic/213315-astuce-reinitialiser-windows-update/?tab=comments#comment-1779731
Completely reset Windows Update (Windows 10 Compatible)
Open the command prompt, Windows key + X >> Command Prompt (admin)
Copy/Paste all the text below into Notepad.
Save the file on the desktop with the .bat extension: e.g., winupdate.bat
If you prefer to download the .bat file directly to your desktop: winupdate.bat
@echo off
echo Reminder: This must be run from an elevated command prompt!
pause
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
pause
To run it right-click on it >> Run as administrator
Press a key as requested.
All the series of commands will be executed in record time
At the end of the execution of all commands, to complete the procedure press any key
Then we can delete the now unnecessary and obsolete folders.
--
pistouri
try this:
https://support.microsoft.com/en-us/windows?ui=en-US&rs=en-001&ad=US
or:
https://forum.zebulon.fr/topic/213315-astuce-reinitialiser-windows-update/?tab=comments#comment-1779731
Completely reset Windows Update (Windows 10 Compatible)
Open the command prompt, Windows key + X >> Command Prompt (admin)
Copy/Paste all the text below into Notepad.
Save the file on the desktop with the .bat extension: e.g., winupdate.bat
If you prefer to download the .bat file directly to your desktop: winupdate.bat
@echo off
echo Reminder: This must be run from an elevated command prompt!
pause
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
pause
To run it right-click on it >> Run as administrator
Press a key as requested.
All the series of commands will be executed in record time
At the end of the execution of all commands, to complete the procedure press any key
Then we can delete the now unnecessary and obsolete folders.
--
pistouri
pistouri
Posted messages
19008
Registration date
Status
Contributor
Last intervention
Ambassadeur
8 723
Open Notepad
Copy/paste this:
@echo off
echo Reminder: This must be run from an elevated command prompt!
pause
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
pause
Then in Notepad, click on File in the top left
Save As
Select Desktop
Then delete *.txt
And copy/paste: winupdate.bat
Then save
Close Notepad
Then on the desktop
Right-click on it >> Run as administrator
Then press a key on the keyboard
Let the operation complete
pistouri
Copy/paste this:
@echo off
echo Reminder: This must be run from an elevated command prompt!
pause
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
pause
Then in Notepad, click on File in the top left
Save As
Select Desktop
Then delete *.txt
And copy/paste: winupdate.bat
Then save
Close Notepad
Then on the desktop
Right-click on it >> Run as administrator
Then press a key on the keyboard
Let the operation complete
pistouri
When you (double) click on it (or right-click > run as administrator).
In fact, once the .bat file is launched, cmd will execute each line from start to finish.
See you later.