Intel display driver, System update (5/14/2015) repeated fail on 10130


  1. Posts : 11
    Windows 10
       #1

    Intel display driver, System update (5/14/2015) repeated fail on 10130


    Folks, I have a Surface Pro 3 on 10130.

    The Intel Display driver update repeatedly fails, and I'm repeatedly offered the 5/14/2015 system update, which appears to succeed, but subsequently is offered again.

    I've stopped WU, removed the SoftwareDistribution folder, restarted WU, etc, no joy.

    Any help/advice appreciated...
      My Computer


  2. Posts : 428
    Windows 10
       #2

    I've ended up getting a bat file that automates and intensive WU reset and just running it as administrator when needed. I have bad internet which occasionally borks windows update.

    Code:
    @echo off
    net stop wuauserv
    net stop bits
    net stop cryptsvc
    net stop trustedinstaller
    sc config cryptsvc start= auto obj= "NT Authority\NetworkService" password= a
    sc config wuauserv start= auto obj= LocalSystem
    sc config bits start= delayed-auto obj= LocalSystem
    Sc config trustedinstaller start= demand obj= LocalSystem
    Sc config eventlog start= auto
    reg add HKLM\SYSTEM\CurrentControlSet\Services\wuauserv\Parameters /v ServiceDll /t REG_EXPAND_SZ /d "%systemroot%\system32\wuaueng.dll" /f
    reg add HKLM\SYSTEM\CurrentControlSet\Services\bits\Parameters /v ServiceDll /t REG_EXPAND_SZ /d "%systemroot%\system32\qmgr.dll" /f
    reg delete HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /f
    reg delete HKLM\COMPONENTS\PendingXmlIdentifier /f
    reg delete HKLM\COMPONENTS\NextQueueEntryIndex /f
    reg delete HKLM\COMPONENTS\AdvancedInstallersNeedResolving /f
    sc sdset wuauserv D:(A;;CCLCSWRPLORC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOSDRCWDWO;;;WD)
    sc sdset bits D:(A;CI;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;SAFA;WDWO;;;BA)
    sc sdset cryptsvc D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)
    sc sdset trustedinstaller D:(A;CI;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;SY)(A;;CCDCLCSWRPWPDTLOCRRC;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;SAFA;WDWO;;;BA)
    sc sdset eventlog D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;SA;DCRPWPDTCRSDWDWO;;;WD)(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)
    takeown /f %systemroot%\winsxs\pending.xml
    icacls %systemroot%\winsxs\pending.xml /grant Administrators:(F)
    icacls %systemroot%\winsxs\pending.xml /grant Administratörer:(F)
    del /q %systemroot%\winsxs\pending.xml
    ren %systemroot%\System32\Catroot2 oldcatroot2
    ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
    rename \ProgramData\Microsoft\Network\Downloader Downloader.old
    cd /d %windir%\system32
    regsvr32.exe atl.dll /s
    regsvr32.exe urlmon.dll /s
    regsvr32.exe jscript.dll /s
    regsvr32.exe vbscript.dll /s
    regsvr32.exe scrrun.dll /s
    regsvr32.exe msxml3.dll /s
    regsvr32.exe msxml6.dll /s
    regsvr32.exe actxprxy.dll /s
    regsvr32.exe softpub.dll /s
    regsvr32.exe wintrust.dll /s
    regsvr32.exe dssenh.dll /s
    regsvr32.exe rsaenh.dll /s
    regsvr32.exe cryptdlg.dll /s
    regsvr32.exe oleaut32.dll /s
    regsvr32.exe ole32.dll /s
    regsvr32.exe shell32.dll /s
    regsvr32.exe wuapi.dll /s
    regsvr32.exe wuaueng.dll /s
    regsvr32.exe wups.dll /s
    regsvr32.exe wups2.dll /s
    regsvr32.exe qmgrprxy.dll /s
    regsvr32.exe wucltux.dll /s
    regsvr32.exe wuwebv.dll /s
    net start eventlog
    net start cryptsvc
    net start bits
    net start wuauserv
    fsutil resource setautoreset true c:\
    netsh winhttp reset proxy
    bitsadmin /reset /allusers
    wuauclt.exe /resetauthorization /detectnow
    :MESSAGE
    echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    echo =================================================================
    echo The commands has been succesfully executed. Hit enter to continue
    echo =================================================================
    echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Pause > Null
    :end
    Save as "Fix Update.bat" and when you need it just right click and run as administrator.
      My Computer


  3. Posts : 11
    Windows 10
    Thread Starter
       #3

    Thanks - source for this code came from...?


    FuturDreamz said:
    I've ended up getting a bat file that automates and intensive WU reset and just running it as administrator when needed. I have bad internet which occasionally borks windows update.

    Code:
    @echo off
    net stop wuauserv
    net stop bits
    net stop cryptsvc
    net stop trustedinstaller
    sc config cryptsvc start= auto obj= "NT Authority\NetworkService" password= a
    sc config wuauserv start= auto obj= LocalSystem
    sc config bits start= delayed-auto obj= LocalSystem
    Sc config trustedinstaller start= demand obj= LocalSystem
    Sc config eventlog start= auto
    reg add HKLM\SYSTEM\CurrentControlSet\Services\wuauserv\Parameters /v ServiceDll /t REG_EXPAND_SZ /d "%systemroot%\system32\wuaueng.dll" /f
    reg add HKLM\SYSTEM\CurrentControlSet\Services\bits\Parameters /v ServiceDll /t REG_EXPAND_SZ /d "%systemroot%\system32\qmgr.dll" /f
    reg delete HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /f
    reg delete HKLM\COMPONENTS\PendingXmlIdentifier /f
    reg delete HKLM\COMPONENTS\NextQueueEntryIndex /f
    reg delete HKLM\COMPONENTS\AdvancedInstallersNeedResolving /f
    sc sdset wuauserv D:(A;;CCLCSWRPLORC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOSDRCWDWO;;;WD)
    sc sdset bits D:(A;CI;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;SAFA;WDWO;;;BA)
    sc sdset cryptsvc D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)
    sc sdset trustedinstaller D:(A;CI;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;SY)(A;;CCDCLCSWRPWPDTLOCRRC;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;SAFA;WDWO;;;BA)
    sc sdset eventlog D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;SA;DCRPWPDTCRSDWDWO;;;WD)(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)
    takeown /f %systemroot%\winsxs\pending.xml
    icacls %systemroot%\winsxs\pending.xml /grant Administrators:(F)
    icacls %systemroot%\winsxs\pending.xml /grant Administratörer:(F)
    del /q %systemroot%\winsxs\pending.xml
    ren %systemroot%\System32\Catroot2 oldcatroot2
    ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
    rename \ProgramData\Microsoft\Network\Downloader Downloader.old
    cd /d %windir%\system32
    regsvr32.exe atl.dll /s
    regsvr32.exe urlmon.dll /s
    regsvr32.exe jscript.dll /s
    regsvr32.exe vbscript.dll /s
    regsvr32.exe scrrun.dll /s
    regsvr32.exe msxml3.dll /s
    regsvr32.exe msxml6.dll /s
    regsvr32.exe actxprxy.dll /s
    regsvr32.exe softpub.dll /s
    regsvr32.exe wintrust.dll /s
    regsvr32.exe dssenh.dll /s
    regsvr32.exe rsaenh.dll /s
    regsvr32.exe cryptdlg.dll /s
    regsvr32.exe oleaut32.dll /s
    regsvr32.exe ole32.dll /s
    regsvr32.exe shell32.dll /s
    regsvr32.exe wuapi.dll /s
    regsvr32.exe wuaueng.dll /s
    regsvr32.exe wups.dll /s
    regsvr32.exe wups2.dll /s
    regsvr32.exe qmgrprxy.dll /s
    regsvr32.exe wucltux.dll /s
    regsvr32.exe wuwebv.dll /s
    net start eventlog
    net start cryptsvc
    net start bits
    net start wuauserv
    fsutil resource setautoreset true c:\
    netsh winhttp reset proxy
    bitsadmin /reset /allusers
    wuauclt.exe /resetauthorization /detectnow
    :MESSAGE
    echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    echo =================================================================
    echo The commands has been succesfully executed. Hit enter to continue
    echo =================================================================
    echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Pause > Null
    :end
    Save as "Fix Update.bat" and when you need it just right click and run as administrator.
      My Computer


  4. Posts : 11
    Windows 10
    Thread Starter
       #4

    Right clicked, run as administrator, this is what I got.......

    [update - I restarted and the bat file was able to stop the WU service sucessfully, but still got the registry keys not found errors]


    The Windows Update service is stopping.
    The Windows Update service could not be stopped.
    The Background Intelligent Transfer Service service is stopping..
    The Background Intelligent Transfer Service service was stopped successfully.
    The Cryptographic Services service is stopping..
    The Cryptographic Services service was stopped successfully.
    The Windows Modules Installer service is not started.
    More help is available by typing NET HELPMSG 3521.
    [SC] ChangeServiceConfig SUCCESS
    [SC] ChangeServiceConfig SUCCESS
    [SC] ChangeServiceConfig SUCCESS
    [SC] ChangeServiceConfig SUCCESS
    [SC] ChangeServiceConfig SUCCESS
    The operation completed successfully.
    ERROR: Access is denied.
    ERROR: The system was unable to find the specified registry key or value.
    ERROR: The system was unable to find the specified registry key or value.
    ERROR: The system was unable to find the specified registry key or value.
    ERROR: The system was unable to find the specified registry key or value.
    [SC] SetServiceObjectSecurity SUCCESS
    [SC] SetServiceObjectSecurity SUCCESS
    [SC] SetServiceObjectSecurity SUCCESS
    [SC] SetServiceObjectSecurity SUCCESS
    [SC] SetServiceObjectSecurity SUCCESS
    ERROR: The system cannot find the file specified.
    C:\WINDOWS\winsxs\pending.xml: The system cannot find the file specified.
    Successfully processed 0 files; Failed processing 1 files
    Administrat÷rer: No mapping between account names and security IDs was done.
    Successfully processed 0 files; Failed processing 1 files
    Could Not Find C:\WINDOWS\winsxs\pending.xml
    Access is denied.
    The requested service has already been started.
    More help is available by typing NET HELPMSG 2182.
    The Cryptographic Services service is starting.
    The Cryptographic Services service was started successfully.
    The Background Intelligent Transfer Service service is starting.
    The Background Intelligent Transfer Service service was started successfully.
    The requested service has already been started.
    More help is available by typing NET HELPMSG 2182.
    The operation completed successfully.
    Current WinHTTP proxy settings:
    Direct access (no proxy server).
    BITSADMIN version 3.0 [ 7.8.10130 ]
    BITS administration utility.
    (C) Copyright 2000-2006 Microsoft Corp.
    BITSAdmin is deprecated and is not guaranteed to be available in future versions
    of Windows.
    Administrative tools for the BITS service are now provided by BITS PowerShell cm
    dlets.
    0 out of 0 jobs canceled.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    =================================================================
    The commands has been succesfully executed. Hit enter to continue
    =================================================================
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
      My Computer


  5. Posts : 11
    Windows 10
    Thread Starter
       #5

    Bump - no additional insight?
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 18:21.
Find Us




Windows 10 Forums