problem on 2018-04 cumulative update (KB4093112)

Anonymous
2018-04-11T13:15:46+00:00

Dear Sir,

my windows 10 64-bit version 1709 updating this KB4093112 updates in a loop, that is initializing, downloading (no download stream since the 2nd loop), installing (counting from 0% to 100%), after that, the installation restarting as a loop, what is wrong with that?

I tried restart my PC but nothing help

This workload keeps my CPU working in 60% and above, HDD working in 40% above somethings (max 100% before restart), RAM usage 45%.

Can anyone help on this?

hardware configuration:

Intel CPU i5-3450S 2.8GHz

RAM: 8GB

HDD: 1TB drive C; 2TB drive D with bitlocker locked

Display card: AMD Radeon R9 380

Mc

Windows for home | Windows 10 | Windows update

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Anonymous
2018-04-11T20:45:45+00:00

I was getting an error code: 0x80070bc2 when trying to install KB4093112. Following this step help resolved my problem just minutes ago:

https://answers.microsoft.com/en-us/windows/forum/windows\_10-update/error-0x80070bc2-when-windows-10-update-trying-to/ba4053f2-acec-43db-9305-bca3cc2b8b0c

  • Right-click on Windows key and select Command Prompt (Admin).
  • Type the following commands in Command Prompt window. To execute them, press Enter after each one. 

SC config wuauserv start= auto

SC config bits start= auto

SC config cryptsvc start= auto

SC config trustedinstaller start= auto

  • Finally, restart your PC and try to install the update that was previously returning the 0x80070bc2 error.

Was this answer helpful?

200+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2018-04-19T07:49:27+00:00

Did you choose the right processor and the cumulative download?  It worked for me, Error 0x8024200d was gone after a reboot.

Was this answer helpful?

9 people found this answer helpful.
0 comments No comments

94 additional answers

Sort by: Newest
  1. Anonymous
    2018-04-18T18:01:35+00:00

    same here

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2018-04-18T17:46:10+00:00

    Well I finally got the VM updated using a combination of nearly every suggestion. If I'd got all the time in the world, I'd go back to the snapshot to try and repeat but in the end it was a mad combination of:

    1. Changing the four services mentioned above to auto - note... Windows keeps resetting the start mode for the bits service to manual
    2. Stopping the wuauserv and bits services and then deleting the SoftwareDistribution folder
    3. Rebooting many times
    4. Installing the update manually

    On the last attempt, I ran the PowerShell script below, installed KB4093112 (Apr 2018 updates) manually and rebooted - at least twice. First time it installed a few things but still said a restart was needed so another restart installed some more stuff and finally said "Up to date" with winver showing Version 1709 (OS Build 16299.371).

    What a palaver!

    Fix-WindowsUpdate.ps1 - attempts to repair culmulative update failures.

    Check running as administrator.

    $User = [Security.Principal.WindowsIdentity]::GetCurrent()

    If (!((New-Object Security.Principal.WindowsPrincipal $User).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator))) {

     Write-Host -Fore Red "Please run as administrator"

     Return

    }

    Change services to auto but also stop them.

    $ServiceNames = @("wuauserv","bits","cryptsvc","trustedinstaller")

    ForEach ($ServiceName In $ServiceNames) {

     $Service = Get-Service -Name $ServiceName

     If ($Service.StartType -ne "Automatic") {

      Write-Host "Changing $ServiceName to automatic"

      $Cmd = "cmd /c SC config $ServiceName start= auto"

      Invoke-Expression $Cmd

     }

     # Write-Host "$ServiceName`: $($Service.Status)"

     If ($Service.Status -eq "Running") {

      Write-Host "Stopping $ServiceName"

      $Service | Stop-Service

     }

    }

    Delete software distribution folder.

    $Path = $Env:WinDir + "\SoftwareDistribution"

    If (Test-Path $Path) {

     Write-Host "Removing $Path"

     Remove-Item -Path $Path -Recurse -Force

    }

    If (Test-Path $Path) {Write-Host -Fore Yellow "WARNING: folder not entirely deleted"}

    Finished.

    Write-Host -Fore Yellow "Run again if errors, otherwise restart"

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2018-04-18T08:43:16+00:00

    Download and install in manually:

    https://www.catalog.update.microsoft.com/Search.aspx?q=KB4093112

    (in my case I needed to try it twice)

    Cheers

    Thanks, BertNiemeijer this solved my Error 0x8024200d

    Was this answer helpful?

    0 comments No comments