Hello,
Thank you for posting in Microsoft Community forum.
Based on the description, I understand your question is related to sysprep.
According to the error logs, the error is related to the Intel Graphics Experience app not being provisioned for all users. This error can occur when certain apps are installed for a specific user but not provisioned for all users, causing issues during the Sysprep process.
Open PowerShell with Admin Rights, run the following command to list all installed packages:
Get-AppxPackage -AllUsers | Where-Object { $_.PackageFullName -like '*IntelGraphicsExperience*' } | Format-List -Property Name, PackageFullName, PackageUserInformation, InstallLocation, SignatureKind
Then remove package if the package is listed as Installed:
Get-AppxPackage -AllUsers | Where-Object { $_.PackageFullName -like '*IntelGraphicsExperience*' } | Remove-AppxPackage -AllUsers
Run the following command to remove the provisioning of the package, replace <PackageFullName> with the full name of the Intel Graphics Experience package.
Remove-AppxProvisionedPackage -Online -PackageName <PackageFullName>
After removing the package and its provisioning, try running Sysprep again.
Have a nice day.
Best Regards,
Molly