Issues may occur with Sysprep on Windows 11, 10 and 8 platforms. When this issue occurs, the Sysprep command does not run and verify the installation as expected. Please refer to the following Windows 11/10 solutions if you have Sysprep issues that need to be fixed.
Since Windows 8, Sysprep still cannot verify that your Windows installation is correct. This issue usually occurs due to user-installed UWP apps. Many users have reported that this issue has been resolved by uninstalling certain UWP apps installed from the MS Store.
This problem may be caused by the lack of default applications pre-installed by Windows. If this happens, you need to reinstall the missing Windows applications. The normal reinstall application command will do the job.
If you are using Windows Professional and Enterprise, Sysprep errors may be caused by the BitLocker encryption feature. The Sysprep utility does not integrate well with BitLocker. Sometimes disabling this feature is also feasible on Windows Professional and Enterprise editions and can resolve this error.
<strong>Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml ”}</strong>
<strong>manage-bde -status</strong>
<strong>Disable-Bitlocker –MountPoint 'C:'</strong>
<strong>regedit</strong>
Computer\HKEY_LOCAL_MACHINE\SYSTEM\Setup<strong></strong>
HKEY_LOCAL_MACHINE\SYSTEM\Setup\Status\SysprepStatus<strong></strong>
You may notice that the Sysprep error message contains the path to the setupact.log file. Examining this file can help you identify what is causing your UWP app to error and potentially other factors behind it.
This is how you can check the setuppact.log file in Windows 11/10.
<strong>%windir% \system32\Sysprep\panther</strong>
To view the details of the Sysprep error, scroll down to the bottom of the log file. When there is an application causing the problem, the log file will include its details as shown below.
Although the SYSPRP package has been installed for the application [app ID], it has not been configured for all users. This package will not run properly in Sysprep images. The 0x80073cf2 error prevents SYSPRP from removing the current user's application.
If you see log details like this, you may have hit the bullseye! Simply uninstall the app (or apps) specified here as outlined in solution four.
Here are some of the best ways to fix Windows 11/10 Sysprep errors. In many cases, they may fix the bug now that a solution has been confirmed.
The above is the detailed content of Fix: Sysprep fails to verify Windows 11 installation. For more information, please follow other related articles on the PHP Chinese website!