To reset Windows Update components in Windows 11, follow these steps:
- Open a Command Prompt: Select Start > Run, type
cmd, and press Enter. - Stop the Services: Type the following commands and press Enter after each:
net stop bits net stop wuauserv net stop cryptsvc - Delete the qmgr.dat Files: Run this command:
Del "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat" - Rename Folders: Rename the following folders to
*.BAK:-
%Systemroot%\SoftwareDistribution\DataStore -
%Systemroot%\SoftwareDistribution\Download -
%Systemroot%\System32\catroot2Use these commands:
Ren %Systemroot%\SoftwareDistribution\DataStore DataStore.bak Ren %Systemroot%\SoftwareDistribution\Download Download.bak Ren %Systemroot%\System32\catroot2 catroot2.bak -
- Reset Services: Type the following commands to reset the BITS and Windows Update services:
sc.exe sdset bits D:(A;;CCLCLCR;;WD)S:(AU;ID;FA;WD) sc.exe sdset wuauserv D:(A;;CCLCLCR;;WD)S:(AU;ID;FA;WD) - Reregister BITS and Windows Update Files: You may need to run additional commands to reregister these files.
- Reset Winsock: Run the following command:
netsh winsock reset - Restart Services: Finally, restart the services with these commands:
net start bits net start wuauserv net start cryptsvc
Following these steps should help reset the Windows Update components effectively.