patrickrcdm
New member
- Jun 27, 2025
- 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
}
}
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
}
}