Windows Intelligence update Issue

Discussion in 'other software & services' started by blacknight, Nov 4, 2023.

  1. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    In Windows Update ( Windows 11 Home 23H2 ) I see a Windows Intelligence update available, but I can't download it, every times Windows Update says: " installation error 0x00000000 "; how can I solve ? Alternatively I checked Microsoft update catalog, But I'm not sure which is the right manual update for me.
     
  2. stapp

    stapp Global Moderator

    Joined:
    Jan 12, 2006
    Posts:
    27,166
    Location:
    UK
    Try rebooting your router.
     
  3. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    I tried after your post, it doesn't work.
     
  4. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    Last edited: Nov 4, 2023
  5. stapp

    stapp Global Moderator

    Joined:
    Jan 12, 2006
    Posts:
    27,166
    Location:
    UK
  6. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    Thank you, Stapp ! I also searched with Google but nothing seems work for me and for other users. Now I'll see if I can find a manually update.
     
  7. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    My problem is to find the updates number for Microsoft Catalog.
     
  8. Brummelchen

    Brummelchen Registered Member

    Joined:
    Jan 3, 2009
    Posts:
    6,294
    there exist no entry for "Windows Intelligence update", in fact for 3 or more daily updates this would spam the box.

    the KB is kb2267602 and its a number for ages of updates, means in may, september, october, maybe quite earlier than those. it wont help you out, there exist no download source.

    depending of your posts here you have a lot issues concerning windows security, eg
    https://www.wilderssecurity.com/threads/windows-defender-scan-issue.452320/#post-3161303
    you discontinued help there and i think you refused to repair windows or use a backup.
    i consider this one as a sequel to that. either you deal with the issue, or start repairing or recovering.
     
  9. stapp

    stapp Global Moderator

    Joined:
    Jan 12, 2006
    Posts:
    27,166
    Location:
    UK
  10. Brummelchen

    Brummelchen Registered Member

    Joined:
    Jan 3, 2009
    Posts:
    6,294
    thank you, i alreay read that thread today, but i missed that line, considering it as a signature.
    fingers crossed this will help him out, but i have doubt, sorry.
     
  11. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    Probably you are right, I should make a complete new installation of 11, and I never find the time to do it.
     
  12. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    I read all. The exe that I downloaded from Microsoft link doesn't work. I read in Virus and Threat protection/About, it doesn't help me. I read also the Protection Cronology and I found this in every times I tried to launch the Windows Intelligence update " access to protected memory blocked ".
     
  13. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    Should I do a complete clean reinstallation, without keep my personal data and my applications ?
     
  14. Brummelchen

    Brummelchen Registered Member

    Joined:
    Jan 3, 2009
    Posts:
    6,294
    from he link stapp gave us
    if that all failed, in special dism, then you should consider a repair from usb stick - this one should meet your build from "winver".
    (my latest is "Windows 11 22631.2428" which was created with the MCT)

    i dont have experience with repair, but i know how to do an inplace upgrade from stick.
     
  15. Bertazzoni

    Bertazzoni Registered Member

    Joined:
    Apr 13, 2018
    Posts:
    746
    Location:
    Milan, Italia
    @blacknight have you tried running this as a batch script?
    Code:
    cd %ProgramFiles%\Windows Defender
    MpCmdRun.exe -removedefinitions -dynamicsignatures
    MpCmdRun.exe -SignatureUpdate
    If trying the above is unsuccessful then either a repair install (See 11 Forum tutorial) or a clean install, in which case wiping the disk completely is the best bet.
     
  16. Spartan

    Spartan Registered Member

    Joined:
    Jun 21, 2016
    Posts:
    1,442
    Location:
    Dubai
    Do you have the Windows Defender disabled by any chance?
     
  17. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    No, it runs.
     
  18. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    Tried now, no effect. Yes, I too believe that the only solution now is a clean install, but in my drive I have three partitions which lots of data, and I hate format the whole disk and then to have to create all them again. :(
     
  19. Spartan

    Spartan Registered Member

    Joined:
    Jun 21, 2016
    Posts:
    1,442
    Location:
    Dubai
    Before you format, try this, open a blank notepad text file, copy/paste the below code:

    Code:
    @echo off
    
    :: Created by: Shawn Brink
    :: Created on: January 6, 2022
    :: Tutorial: https://www.elevenforum.com/t/reset-windows-update-in-windows-11.3808/
    
    
    :: Prompt to Run as administrator
    Set "Variable=0" & if exist "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs"
    fsutil dirty query %systemdrive%  >nul 2>&1 && goto :(Privileges_got)
    If "%1"=="%Variable%" (echo. &echo. Please right-click on the file and select &echo. "Run as administrator". &echo. Press any key to exit. &pause>nul 2>&1& exit)
    cmd /u /c echo Set UAC = CreateObject^("Shell.Application"^) : UAC.ShellExecute "%~0", "%Variable%", "", "runas", 1 > "%temp%\getadmin.vbs"&cscript //nologo "%temp%\getadmin.vbs" & exit
    :(Privileges_got)
    
    :: Checking and Stopping the Windows Update services
    set b=0
    
    :bits
    set /a b=%b%+1
    if %b% equ 3 (
       goto end1
    )
    net stop bits
    echo Checking the bits service status.
    sc query bits | findstr /I /C:"STOPPED"
    if not %errorlevel%==0 (
        goto bits
    )
    goto loop2
    
    :end1
    cls
    echo.
    echo Cannot reset Windows Update since "Background Intelligent Transfer Service" (bits) service failed to stop. Please restart the computer, and try again.
    echo.
    pause
    goto Start
    
    
    :loop2
    set w=0
    
    :wuauserv
    set /a w=%w%+1
    if %w% equ 3 (
       goto end2
    )
    net stop wuauserv
    echo Checking the wuauserv service status.
    sc query wuauserv | findstr /I /C:"STOPPED"
    if not %errorlevel%==0 (
        goto wuauserv
    )
    goto loop3
    
    :end2
    cls
    echo.
    echo Cannot reset Windows Update since "Windows Update" (wuauserv) service failed to stop. Please restart the computer, and try again.
    echo.
    pause
    goto Start
    
    
    
    :loop3
    set c=0
    
    :cryptsvc
    set /a c=%c%+1
    if %c% equ 3 (
       goto end4
    )
    net stop cryptsvc
    echo Checking the cryptsvc service status.
    sc query cryptsvc | findstr /I /C:"STOPPED"
    if not %errorlevel%==0 (
        goto cryptsvc
    )
    goto Reset
    
    :end4
    cls
    echo.
    echo Cannot reset Windows Update since "Cryptographic Services" (cryptsvc) service failed to stop. Please restart the computer, and try again.
    echo.
    pause
    goto Start
    
    
    :Reset
    Ipconfig /flushdns
    del /s /q /f "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat"
    del /s /q /f "%ALLUSERSPROFILE%\Microsoft\Network\Downloader\qmgr*.dat"
    del /s /q /f "%SYSTEMROOT%\Logs\WindowsUpdate\*"
    
    
    if exist "%SYSTEMROOT%\winsxs\pending.xml.bak" del /s /q /f "%SYSTEMROOT%\winsxs\pending.xml.bak"
    if exist "%SYSTEMROOT%\winsxs\pending.xml" (
        takeown /f "%SYSTEMROOT%\winsxs\pending.xml"
        attrib -r -s -h /s /d "%SYSTEMROOT%\winsxs\pending.xml"
        ren "%SYSTEMROOT%\winsxs\pending.xml" pending.xml.bak
    )
     
    if exist "%SYSTEMROOT%\SoftwareDistribution\DataStore.bak" rmdir /s /q "%SYSTEMROOT%\SoftwareDistribution\DataStore.bak"
    if exist "%SYSTEMROOT%\SoftwareDistribution\DataStore" (
        attrib -r -s -h /s /d "%SYSTEMROOT%\SoftwareDistribution\DataStore"
        ren "%SYSTEMROOT%\SoftwareDistribution\DataStore" DataStore.bak
    )
    
    if exist "%SYSTEMROOT%\SoftwareDistribution\Download.bak" rmdir /s /q "%SYSTEMROOT%\SoftwareDistribution\Download.bak"
    if exist "%SYSTEMROOT%\SoftwareDistribution\Download" (
        attrib -r -s -h /s /d "%SYSTEMROOT%\SoftwareDistribution\Download"
        ren "%SYSTEMROOT%\SoftwareDistribution\Download" Download.bak
    )
     
    if exist "%SYSTEMROOT%\system32\Catroot2.bak" rmdir /s /q "%SYSTEMROOT%\system32\Catroot2.bak"
    if exist "%SYSTEMROOT%\system32\Catroot2" (
        attrib -r -s -h /s /d "%SYSTEMROOT%\system32\Catroot2"
        ren "%SYSTEMROOT%\system32\Catroot2" Catroot2.bak
    )
     
    
    :: Reset Windows Update policies
    reg delete "HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /f
    reg delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate" /f
    reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /f
    reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate" /f
    gpupdate /force
    
    
    :: Reset the BITS service and the Windows Update service to the default security descriptor
    sc.exe sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)
    sc.exe sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)
    
    
    :: Reregister the BITS files and the Windows Update files
    cd /d %windir%\system32
    regsvr32.exe /s atl.dll
    regsvr32.exe /s urlmon.dll
    regsvr32.exe /s mshtml.dll
    regsvr32.exe /s shdocvw.dll
    regsvr32.exe /s browseui.dll
    regsvr32.exe /s jscript.dll
    regsvr32.exe /s vbscript.dll
    regsvr32.exe /s scrrun.dll
    regsvr32.exe /s msxml.dll
    regsvr32.exe /s msxml3.dll
    regsvr32.exe /s msxml6.dll
    regsvr32.exe /s actxprxy.dll
    regsvr32.exe /s softpub.dll
    regsvr32.exe /s wintrust.dll
    regsvr32.exe /s dssenh.dll
    regsvr32.exe /s rsaenh.dll
    regsvr32.exe /s gpkcsp.dll
    regsvr32.exe /s sccbase.dll
    regsvr32.exe /s slbcsp.dll
    regsvr32.exe /s cryptdlg.dll
    regsvr32.exe /s oleaut32.dll
    regsvr32.exe /s ole32.dll
    regsvr32.exe /s shell32.dll
    regsvr32.exe /s initpki.dll
    regsvr32.exe /s wuapi.dll
    regsvr32.exe /s wuaueng.dll
    regsvr32.exe /s wuaueng1.dll
    regsvr32.exe /s wucltui.dll
    regsvr32.exe /s wups.dll
    regsvr32.exe /s wups2.dll
    regsvr32.exe /s wuweb.dll
    regsvr32.exe /s qmgr.dll
    regsvr32.exe /s qmgrprxy.dll
    regsvr32.exe /s wucltux.dll
    regsvr32.exe /s muweb.dll
    regsvr32.exe /s wuwebv.dll
    netsh winsock reset
    netsh winsock reset proxy
    
    :: Set the startup type as automatic
    sc config wuauserv start= auto
    sc config bits start= auto
    sc config DcomLaunch start= auto
    
    :Start
    net start bits
    net start wuauserv
    net start cryptsvc
    
    :: Restart computer
    cls
    echo It is required to restart the computer to finish resetting Windows Update.
    echo.
    echo Please save and close anything open now, before the computer is restarted.
    echo.
    pause
    echo.
    echo.
    echo.
    echo *** Restart computer now. ***
    echo.
    pause
    shutdown /r /f /t 0
    Now exit Notpad and save the file name as anything you want but change the extension from txt to BAT, I save it as: Reset-Reregister_Windows_Update_Components.bat

    Right click on it, then choose Run as Admin, once it is done, reboot and see if the update works
     
  20. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    Thanks a lot, I ran it, but unfortunately it didn't work.
     
  21. stapp

    stapp Global Moderator

    Joined:
    Jan 12, 2006
    Posts:
    27,166
    Location:
    UK
    By the way, are you using anything like O&O shut up or any other system optimiser ?
     
  22. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    No, and in this pc I don't use third part security softwares.
     
  23. Mr.X

    Mr.X Registered Member

    Joined:
    Aug 10, 2013
    Posts:
    5,258
    Location:
    .
    Yes but in this case no, @blacknight has three partitions.
    Not the whole disk just the first active partition where Windows sits and boots.
    Just do a high level format for that partition.
    Do not do a low or high level format or wipe to the whole disk. Again just the partition where Windows reside.

    Btw, did you already try an in-place upgrade as @Brummelchen suggested? This way you won't lose settings or installed applications.
    https://learn.microsoft.com/en-us/troubleshoot/windows-server/deployment/repair-or-in-place-upgrade
    https://www.techtarget.com/searchenterprisedesktop/tip/Use-an-in-place-upgrade-to-repair-Windows-10
    https://www.makeuseof.com/in-place-upgrade-windows-11/
    https://www.elevenforum.com/t/repair-install-windows-11-with-an-in-place-upgrade.418/
     
    Last edited: Nov 5, 2023
  24. blacknight

    blacknight Registered Member

    Joined:
    Sep 25, 2007
    Posts:
    3,383
    Location:
    Europe, UE citizen
    Yes, I tried before beginning this thread, but every time I tried the operation aborted, and it said to me " An error occurred, impossible to complete the operation "
     
  25. Mr.X

    Mr.X Registered Member

    Joined:
    Aug 10, 2013
    Posts:
    5,258
    Location:
    .
    Then a clean installation is the only solution. If you need to, make use of a partition manager for better results.
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.