How to fix Windows 10 0xc1800118 error on WSUS
3 min. read
Updated on
Read our disclosure page to find out how can you help Windows Report sustain the editorial team. Read more
Installing Windows 10 updates can sometimes be quite tricky due to all the errors that may occur during and after the installation process. The error messageĀ 0xc1800118 is one of the most frequently encountered errors when installing Windows 10 updates or new OS builds.
ErrorĀ 0xc1800118 affects many Windows 10 users
I am receiving “Feature update to windows 10, version 1607 error 0xc1800118″ and the installation fails. Can anyone shed light on what errorĀ 0xc1800118 means. Thank you
This problem occurs if the Windows 10 Version 1607 update is encrypted but does not appear as encrypted in the WSUS Database. Microsoft also explains that this problem may occur if the updates are synced before you apply KB3159706.
Steps to fix error 0xc1800118
1. Detect whether WSUS is in a bad state, whichĀ is indicated by a “TotalResults > 0” result.To do this, run the following query:
select TotalResults = Count(*)
from tbFile
where (IsEncrypted = 1 and DecryptionKey is NULL) or (FileName like ‘%14393%.esd’ and IsEncrypted = 0)
2. Disable the āUpgradesā classification (USS or stand-alone WSUS). To do this, run the following command in PowerShell:
Get-WsusClassification | Where-Object -FilterScript {$_.Classification.Title -Eq āUpgradesā} | Set-WsusClassification -Disable
3. Delete the previously synched upgrades (all WSUS – start at the topmost server). Run this PowerShell command:
$s = Get-WsusServer
$1607Updates = $s.SearchUpdates(āversion 1607ā)
$1607Updates | foreach { $_.Decline() }
$1607Updates | foreach { $s.DeleteUpdate($_.Id.UpdateId) }
In the second command, “version 1607” represents English language updates. For non-English updates, substitute the language-appropriate titles for the SearchUpdates string.
Important note: You may have the impression that Powershell fails to do anything. You won’t be able to type commands, as the tool just hangs there. Deleting the upgrades can sometime take more than 30 minutes.Ā Just let it run until you get back to a prompt.
4. Enable the āUpgradesā classification (USS or stand-alone WSUS). Run this PowerShell command:
Get-WsusClassification | Where-Object -FilterScript {$_.Classification.Title -Eq āUpgradesā} | Set-WsusClassification
5. Delete files from the tbFile table in the WSUS database (all WSUS – start at the topmost server) using this command:
declare @NotNeededFiles table (FileDigest binary(20) UNIQUE);
insert into @NotNeededFiles(FileDigest) (select FileDigest from tbFile where FileName like ‘%14393%.esd’ except select FileDigest from tbFileForRevision);
delete from tbFileOnServer where FileDigest in (select FileDigest from @NotNeededFiles)
delete from tbFile where FileDigest in (select FileDigest from @NotNeededFiles)
6. Perform a full sync (USS or stand-alone WSUS) using the following PowerShell command:
$sub = $s.GetSubscription()
$sub.StartSynchronization()
7. If error 0xc1800118 still appears on the screen, run the following command in Command Prompt:
- net stop wuauserv
- del %windir%SoftwareDistributionDataStore*
8. Scan for updates.
RELATED STORIES YOU NEED TO CHECK OUT:
User forum
0 messages