KB5060526 with error 0x800f081f (Windows Server 2022)

patrickrcdm

New member
Joined
Jun 27, 2025
Posts
1
Hello guys,
I have an issue with this Windows machine.
Receiving error 0x800f081f
Attached CBS logs (CBS.zip) and Components report.

Thanks a lot!

In the past, I resolved cumulative update installation failure with the following script, but in this new update, I was unsuccessful.

The script will mark the corrupted packages as absent.
$name = 'CurrentState'
$check=(get-childitem -Path 'HKLM:\software\microsoft\windows\currentversion\component based servicing\packages' -Recurse).Name
foreach($check1 in $check)
{
$check2=$check1.replace("HKEY_LOCAL_MACHINE","HKLM:")
if((Get-ItemProperty -Path $check2).$name -eq 0x50 -or (Get-ItemProperty -Path $check2).$name -eq 0x40 )
{
write-host (Get-ItemProperty -Path $check2).PSChildName
Set-ItemProperty -Path $check2 -Name $name -Value 0
}
}
 

Attachments

Hi @patrickrcdm,

Welcome to Sysnative Forums!

If you haven't already, please review the posting instructions here, and attach the requested log files. Without log files, our helpers will not be able to assist, and this will slow down fixing your machine.

If logs have been already been provided, our team of volunteers will analyse the provided log files to build a fix for your system. Please be aware that this may take several days from your initial post, due to the high volume of threads that we receive.


- Sysnative Windows Update Team
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top