Hello MMjohns195,
Thank you for posting in Microsoft Community forum.
The error code you provided, 2148468767 (or 0x800F081F), is a common Windows Update error. This error typically occurs when Windows cannot find the files needed to complete the update process. This can be due to corrupted or missing files.
Here are a few steps you can try to resolve this issue:
Windows Update Troubleshooter
Run the Windows Update Troubleshooter:
- Go to **Settings** > **Update & Security** > **Troubleshoot** > **Additional troubleshooters**.
- Select **Windows Update** and run the troubleshooter.
Reset Windows Update Components
Reset the Windows Update components manually:
- Open Command Prompt as an administrator.
- Stop the Background Intelligent Transfer Service (BITS), Windows Update service, and Cryptographic service by running:
net stop wuauserv net stop cryptSvc net stop bits net stop msiserver
- Rename the
SoftwareDistribution
andCatroot2
folders:ren C:\Windows\SoftwareDistribution SoftwareDistribution.old ren C:\Windows\System32\catroot2 Catroot2.old
- Restart the services you stopped:
net start wuauserv net start cryptSvc net start bits net start msiserver
Check System Files
Perform a System File Check to replace any corrupted or missing system files:
- Open Command Prompt as an administrator.
- Run the following command:
sfc /scannow
DISM Tool
Use the Deployment Imaging Service and Management Tool (DISM) to repair Windows Update components:
- Open Command Prompt as an administrator.
- Run the following commands:
DISM.exe /Online /Cleanup-image /Scanhealth DISM.exe /Online /Cleanup-image /Restorehealth
Group Policy Settings
Ensure that there are no conflicting group policy settings:
- Open the Group Policy Editor (
gpedit.msc
). - Navigate to
Computer Configuration
>Administrative Templates
>Windows Components
>Windows Update
. - Ensure that settings like "Do not include drivers with Windows Updates" are not causing issues.
Check for Malware
Sometimes, malware can interfere with Windows Update. Run a full system scan using Windows Defender or another reputable antivirus program.
Windows Update Log
Check the Windows Update log for more specific errors:
- Open PowerShell as an administrator.
- Run the following command to generate a Windows Update log:
Get-WindowsUpdateLog
- Review the log file (typically saved on your desktop) for more specific error messages.
Manual Download and Installation
Manually download and install the updates from the Microsoft Update Catalog website:
- Go to the Microsoft Update Catalog.
- Search for the specific KB numbers of the updates failing to install.
- Download and install the updates manually.
In-Place Upgrade
As a last resort, you can perform an in-place upgrade to repair Windows without losing your data:
- Download the Windows 10 or 11 ISO from the Microsoft website.
- Mount the ISO and run the setup file.
- Follow the prompts to upgrade while keeping your files and applications.
Automate Repairs Using Scripts
Since you have a large number of PCs, consider using PowerShell scripts or Group Policy to automate some of these repair tasks. For example, you can script the reset of Windows Update components and deploy it across multiple machines.
If none of these solutions work, there might be a deeper issue at hand, such as hardware problems or widespread corruption that indeed require more intrusive methods like reimaging the PCs.
For large-scale deployment of updates or fixes, consider using tools like Microsoft Endpoint Configuration Manager (SCCM) or Windows Server Update Services (WSUS) to manage and automate the updating process.
I hope the information above is helpful.
If you have any question or concern, please feel free to let us know.
Best Regards,
Haijian Shan