Hi folks. Got the following error when trying to run Sysprep in a Windows 10 installation.
Sysprep was not able to validate Your Windows installation. Review the log file at %WINDIR%\System32\Sysprep\Panther\setupact.log for details. After resolving the issue, use Sysprep to validate your installation again.
Investigating the log file mentioned shows the following.
SYSPRP Failed to remove apps for the current user: 0x80073cf2.
Microsoft has a knowledge base article mentioning this and a way to list all apps that have been installed from the Windows store. However, this was a brand new installation and I was certain I had not added any apps.
I did, however, remember that I removed some apps, but I didn’t know which ones. To install all apps that come default with the operating system, run the following Powershell command:
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
After running this I was able to sysprep my Windows 10 installation again.
Same original error. Ran your script and it removed stuff but got the same error. frustrating
Thankyou very muck
While it took me two rude people in Microsoft’s customer support, 1 call hung-up and one escalation who forgot to press the mute button and let me hear their conversation on how to get rid of me on the phone. I was able to figure out myself how correct this error.
If you open up the setupact.log file, scan the lines that tells you where it fails to execute the SysPrep command. It points to an installation of an app from the Windows store. The culprit was the Twitter app. I went to Start menu and uninstall the app from there. I also uninstalled Xbox app which I believed came from the Windows store as well. Ran the SysPrep successfully.
Problem solved!!!
Paul,
Thank you. This worked for me. In my case, the new Dell laptop had Twitter and Candy Saga.
This works! Thanks a ton!
Absolute legend! Uninstalled the Twitter app and was able to run the Sysprep tool. Many thanks!
this was the correct answer for me. thank you.
Hi Frode Henriksen,
Thank you so much!
I needed to perform a couple of steps: check:
%windir%\system32\sysprep\panther\setupact.txt
%windir%\system32\sysprep\panther\setuperrr.txt
There was your mentioned error, not able to validate and:
There was a camera package that needed to be deinstalled via:
powershell (elevated)
Import-Module Appx
Import-Module Dism
Get-AppxPackage -AllUser | Where PublisherId -eq 8wekyb3d8bbwe | Format-List -Property PackageFullName,PackageUserInformation
Remove-AppxPackage -Package Microsoft.WindowsCamera_2016.404.120.0_x64__8wekyb3d8bbwe
I had no reg value that was present at:
HKEY_LOCAL_MACHINE\SYSTEM\Setup\
DELETE the Upgrade key
After applying your fix I was able to sysprep it.
Thank you so much again. Now I can feed my baby and get some night sleep for my sons birthday tommorow!
I’m having the day off, and this solution eases the joy I have with my family.
Kind regards,
Martijn Kamminga
In out case it was Surface app from Store.
Followed the same steps and able to sysprep the machine.
Maybe this help with sysprep.
https://enterinit.com/sysprep-was-not-able-to-validate-your-windows-installation/
Thanks a lot!! Worked perfectly
Hi Everyone. Got the following error when trying to run Sysprep in a Windows 10 installation.
Sysprep was not able to validate Your Windows installation. Review the log file at %WINDIR%\System32\Sysprep\Panther\setupact.log for details. After resolving the issue, use Sysprep to validate your installation again.
I deleted the Upgrade key under registry and removed all the provisioned apps as well.
Below are the error logs would appreciate if someone have a look and let me know what can be done here ….
Setup error logs : 2017-10-05 01:06:24, Error [0x0f0036] SYSPRP spopk.dll:: Sysprep will not run on an upgraded OS. You can only run Sysprep on a custom (clean) install version of Windows.
2017-10-05 01:06:24, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘Sysprep_Clean_Validate_Opk’ from C:\Windows\System32\spopk.dll; dwRet = 0x139f
2017-10-05 01:06:24, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml; dwRet = 0x139f
2017-10-05 01:06:24, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x139f
2017-10-05 01:06:24, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x139f
2017-10-05 01:06:24, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep cleanup internal providers; hr = 0x8007139f
2017-10-05 01:20:57, Error SYSPRP Package Microsoft.MicrosoftOfficeHub_17.7608.23501.0_x64__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 01:20:57, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 01:20:57, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 01:20:57, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 01:20:57, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 01:20:57, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 01:20:57, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 01:20:57, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 01:23:42, Error SYSPRP Package Microsoft.Office.Sway_17.8471.45091.0_x64__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 01:23:42, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 01:23:42, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 01:23:42, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 01:23:42, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 01:23:42, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 01:23:42, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 01:23:42, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 01:44:15, Error SYSPRP Package Microsoft.Office.Sway_17.8471.45091.0_x64__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 01:44:15, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 01:44:15, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 01:44:15, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 01:44:15, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 01:44:15, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 01:44:15, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 01:44:15, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 02:00:25, Error SYSPRP Package Microsoft.Messaging_2.15.20002.0_x86__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 02:00:25, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 02:00:25, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 02:00:25, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 02:00:25, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 02:00:25, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 02:00:25, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 02:00:25, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 02:24:44, Error SYSPRP Package Microsoft.Messaging_2.15.20002.0_x86__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 02:24:44, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 02:24:44, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 02:24:44, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 02:24:44, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 02:24:44, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 02:24:44, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 02:24:44, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-04 02:25:47, Error SYSPRP Package Microsoft.Messaging_2.15.20002.0_x86__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-04 02:25:47, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-04 02:25:47, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-04 02:25:47, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-04 02:25:47, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-04 02:25:47, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-04 02:25:47, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-04 02:25:47, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
Setup act.log :
2017-10-05 01:06:24, Info SYSPRP ========================================================
2017-10-05 01:06:24, Info SYSPRP === Beginning of a new sysprep run ===
2017-10-05 01:06:24, Info SYSPRP ========================================================
2017-10-05 01:06:24, Info [0x0f004d] SYSPRP The time is now 2017-10-05 01:06:24
2017-10-05 01:06:24, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2017-10-05 01:06:24, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2017-10-05 01:06:24, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2017-10-05 01:06:24, Warning SYSPRP WinMain: File operations pending
2017-10-05 01:06:24, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘GENERALIZE’
2017-10-05 01:06:24, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘OOBE’
2017-10-05 01:06:24, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘SHUTDOWN’
2017-10-05 01:06:24, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘cleanup’ internal providers.
2017-10-05 01:06:24, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2017-10-05 01:06:24, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode
2017-10-05 01:06:24, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2017-10-05 01:06:24, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:06:24, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:06:24, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 01:06:24, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 01:06:24, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:06:24, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:06:24, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 01:06:24, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘Sysprep_Clean_Validate_Opk’ in C:\Windows\System32\spopk.dll; executing it
2017-10-05 01:06:24, Error [0x0f0036] SYSPRP spopk.dll:: Sysprep will not run on an upgraded OS. You can only run Sysprep on a custom (clean) install version of Windows.
2017-10-05 01:06:24, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘Sysprep_Clean_Validate_Opk’ from C:\Windows\System32\spopk.dll; dwRet = 0x139f
2017-10-05 01:06:24, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml; dwRet = 0x139f
2017-10-05 01:06:24, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x139f
2017-10-05 01:06:24, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x139f
2017-10-05 01:06:24, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep cleanup internal providers; hr = 0x8007139f
2017-10-05 01:07:44, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2017-10-05 01:07:44, Info [0x0f004d] SYSPRP The time is now 2017-10-05 01:07:44
2017-10-05 01:20:56, Info SYSPRP ========================================================
2017-10-05 01:20:56, Info SYSPRP === Beginning of a new sysprep run ===
2017-10-05 01:20:56, Info SYSPRP ========================================================
2017-10-05 01:20:56, Info [0x0f004d] SYSPRP The time is now 2017-10-05 01:20:56
2017-10-05 01:20:56, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2017-10-05 01:20:56, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2017-10-05 01:20:56, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2017-10-05 01:20:56, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘GENERALIZE’
2017-10-05 01:20:56, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘OOBE’
2017-10-05 01:20:56, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘SHUTDOWN’
2017-10-05 01:20:56, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘cleanup’ internal providers.
2017-10-05 01:20:56, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2017-10-05 01:20:56, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode
2017-10-05 01:20:56, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2017-10-05 01:20:56, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:20:56, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:20:56, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 01:20:56, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 01:20:56, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:20:56, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:20:56, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 01:20:56, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘Sysprep_Clean_Validate_Opk’ in C:\Windows\System32\spopk.dll; executing it
2017-10-05 01:20:57, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘Sysprep_Clean_Validate_Opk’ from C:\Windows\System32\spopk.dll without error
2017-10-05 01:20:57, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘generalize’ internal providers.
2017-10-05 01:20:57, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 1
2017-10-05 01:20:57, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml, and mode
2017-10-05 01:20:57, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml
2017-10-05 01:20:57, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:20:57, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:20:57, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 01:20:57, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 01:20:57, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:20:57, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:20:57, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 01:20:57, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘ValidateBitLockerState’ in C:\Windows\System32\BdeSysprep.dll; executing it
2017-10-05 01:20:57, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘ValidateBitLockerState’ from C:\Windows\System32\BdeSysprep.dll without error
2017-10-05 01:20:57, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘SysprepGeneralizeValidate’ in C:\Windows\System32\AppxSysprep.dll; executing it
2017-10-05 01:20:57, Info SYSPRP Entering SysprepGeneralizeValidate (Appx) – validating whether all apps are also provisioned.
2017-10-05 01:20:57, Error SYSPRP Package Microsoft.MicrosoftOfficeHub_17.7608.23501.0_x64__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 01:20:57, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 01:20:57, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 01:20:57, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 01:20:57, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 01:20:57, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 01:20:57, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 01:20:57, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 01:21:04, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2017-10-05 01:21:04, Info [0x0f004d] SYSPRP The time is now 2017-10-05 01:21:04
2017-10-05 01:23:42, Info SYSPRP ========================================================
2017-10-05 01:23:42, Info SYSPRP === Beginning of a new sysprep run ===
2017-10-05 01:23:42, Info SYSPRP ========================================================
2017-10-05 01:23:42, Info [0x0f004d] SYSPRP The time is now 2017-10-05 01:23:42
2017-10-05 01:23:42, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2017-10-05 01:23:42, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2017-10-05 01:23:42, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2017-10-05 01:23:42, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘GENERALIZE’
2017-10-05 01:23:42, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘OOBE’
2017-10-05 01:23:42, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘SHUTDOWN’
2017-10-05 01:23:42, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘cleanup’ internal providers.
2017-10-05 01:23:42, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2017-10-05 01:23:42, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode
2017-10-05 01:23:42, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2017-10-05 01:23:42, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:23:42, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:23:42, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 01:23:42, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 01:23:42, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:23:42, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:23:42, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 01:23:42, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘Sysprep_Clean_Validate_Opk’ in C:\Windows\System32\spopk.dll; executing it
2017-10-05 01:23:42, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘Sysprep_Clean_Validate_Opk’ from C:\Windows\System32\spopk.dll without error
2017-10-05 01:23:42, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘generalize’ internal providers.
2017-10-05 01:23:42, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 1
2017-10-05 01:23:42, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml, and mode
2017-10-05 01:23:42, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml
2017-10-05 01:23:42, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:23:42, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:23:42, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 01:23:42, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 01:23:42, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:23:42, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:23:42, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 01:23:42, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘ValidateBitLockerState’ in C:\Windows\System32\BdeSysprep.dll; executing it
2017-10-05 01:23:42, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘ValidateBitLockerState’ from C:\Windows\System32\BdeSysprep.dll without error
2017-10-05 01:23:42, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘SysprepGeneralizeValidate’ in C:\Windows\System32\AppxSysprep.dll; executing it
2017-10-05 01:23:42, Info SYSPRP Entering SysprepGeneralizeValidate (Appx) – validating whether all apps are also provisioned.
2017-10-05 01:23:42, Error SYSPRP Package Microsoft.Office.Sway_17.8471.45091.0_x64__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 01:23:42, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 01:23:42, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 01:23:42, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 01:23:42, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 01:23:42, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 01:23:42, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 01:23:42, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 01:23:49, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2017-10-05 01:23:49, Info [0x0f004d] SYSPRP The time is now 2017-10-05 01:23:49
2017-10-05 01:44:15, Info SYSPRP ========================================================
2017-10-05 01:44:15, Info SYSPRP === Beginning of a new sysprep run ===
2017-10-05 01:44:15, Info SYSPRP ========================================================
2017-10-05 01:44:15, Info [0x0f004d] SYSPRP The time is now 2017-10-05 01:44:15
2017-10-05 01:44:15, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2017-10-05 01:44:15, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2017-10-05 01:44:15, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2017-10-05 01:44:15, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘GENERALIZE’
2017-10-05 01:44:15, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘OOBE’
2017-10-05 01:44:15, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘SHUTDOWN’
2017-10-05 01:44:15, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘cleanup’ internal providers.
2017-10-05 01:44:15, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2017-10-05 01:44:15, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode
2017-10-05 01:44:15, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2017-10-05 01:44:15, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:44:15, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:44:15, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 01:44:15, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 01:44:15, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:44:15, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:44:15, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 01:44:15, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘Sysprep_Clean_Validate_Opk’ in C:\Windows\System32\spopk.dll; executing it
2017-10-05 01:44:15, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘Sysprep_Clean_Validate_Opk’ from C:\Windows\System32\spopk.dll without error
2017-10-05 01:44:15, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘generalize’ internal providers.
2017-10-05 01:44:15, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 1
2017-10-05 01:44:15, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml, and mode
2017-10-05 01:44:15, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml
2017-10-05 01:44:15, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:44:15, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 01:44:15, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 01:44:15, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 01:44:15, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:44:15, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 01:44:15, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 01:44:15, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘ValidateBitLockerState’ in C:\Windows\System32\BdeSysprep.dll; executing it
2017-10-05 01:44:15, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘ValidateBitLockerState’ from C:\Windows\System32\BdeSysprep.dll without error
2017-10-05 01:44:15, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘SysprepGeneralizeValidate’ in C:\Windows\System32\AppxSysprep.dll; executing it
2017-10-05 01:44:15, Info SYSPRP Entering SysprepGeneralizeValidate (Appx) – validating whether all apps are also provisioned.
2017-10-05 01:44:15, Error SYSPRP Package Microsoft.Office.Sway_17.8471.45091.0_x64__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 01:44:15, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 01:44:15, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 01:44:15, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 01:44:15, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 01:44:15, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 01:44:15, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 01:44:15, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 01:44:25, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2017-10-05 01:44:25, Info [0x0f004d] SYSPRP The time is now 2017-10-05 01:44:25
2017-10-05 02:00:25, Info SYSPRP ========================================================
2017-10-05 02:00:25, Info SYSPRP === Beginning of a new sysprep run ===
2017-10-05 02:00:25, Info SYSPRP ========================================================
2017-10-05 02:00:25, Info [0x0f004d] SYSPRP The time is now 2017-10-05 02:00:25
2017-10-05 02:00:25, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2017-10-05 02:00:25, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2017-10-05 02:00:25, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2017-10-05 02:00:25, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘GENERALIZE’
2017-10-05 02:00:25, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘OOBE’
2017-10-05 02:00:25, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘SHUTDOWN’
2017-10-05 02:00:25, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘cleanup’ internal providers.
2017-10-05 02:00:25, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2017-10-05 02:00:25, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode
2017-10-05 02:00:25, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2017-10-05 02:00:25, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 02:00:25, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 02:00:25, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 02:00:25, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 02:00:25, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 02:00:25, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 02:00:25, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 02:00:25, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘Sysprep_Clean_Validate_Opk’ in C:\Windows\System32\spopk.dll; executing it
2017-10-05 02:00:25, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘Sysprep_Clean_Validate_Opk’ from C:\Windows\System32\spopk.dll without error
2017-10-05 02:00:25, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘generalize’ internal providers.
2017-10-05 02:00:25, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 1
2017-10-05 02:00:25, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml, and mode
2017-10-05 02:00:25, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml
2017-10-05 02:00:25, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 02:00:25, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 02:00:25, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 02:00:25, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 02:00:25, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 02:00:25, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 02:00:25, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 02:00:25, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘ValidateBitLockerState’ in C:\Windows\System32\BdeSysprep.dll; executing it
2017-10-05 02:00:25, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘ValidateBitLockerState’ from C:\Windows\System32\BdeSysprep.dll without error
2017-10-05 02:00:25, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘SysprepGeneralizeValidate’ in C:\Windows\System32\AppxSysprep.dll; executing it
2017-10-05 02:00:25, Info SYSPRP Entering SysprepGeneralizeValidate (Appx) – validating whether all apps are also provisioned.
2017-10-05 02:00:25, Error SYSPRP Package Microsoft.Messaging_2.15.20002.0_x86__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 02:00:25, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 02:00:25, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 02:00:25, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 02:00:25, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 02:00:25, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 02:00:25, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 02:00:25, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 02:00:30, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2017-10-05 02:00:30, Info [0x0f004d] SYSPRP The time is now 2017-10-05 02:00:30
2017-10-05 02:24:44, Info SYSPRP ========================================================
2017-10-05 02:24:44, Info SYSPRP === Beginning of a new sysprep run ===
2017-10-05 02:24:44, Info SYSPRP ========================================================
2017-10-05 02:24:44, Info [0x0f004d] SYSPRP The time is now 2017-10-05 02:24:44
2017-10-05 02:24:44, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2017-10-05 02:24:44, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2017-10-05 02:24:44, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2017-10-05 02:24:44, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘GENERALIZE’
2017-10-05 02:24:44, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘OOBE’
2017-10-05 02:24:44, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘SHUTDOWN’
2017-10-05 02:24:44, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘cleanup’ internal providers.
2017-10-05 02:24:44, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2017-10-05 02:24:44, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode
2017-10-05 02:24:44, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2017-10-05 02:24:44, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 02:24:44, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 02:24:44, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 02:24:44, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 02:24:44, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 02:24:44, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 02:24:44, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 02:24:44, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘Sysprep_Clean_Validate_Opk’ in C:\Windows\System32\spopk.dll; executing it
2017-10-05 02:24:44, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘Sysprep_Clean_Validate_Opk’ from C:\Windows\System32\spopk.dll without error
2017-10-05 02:24:44, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘generalize’ internal providers.
2017-10-05 02:24:44, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 1
2017-10-05 02:24:44, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml, and mode
2017-10-05 02:24:44, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml
2017-10-05 02:24:44, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 02:24:44, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-05 02:24:44, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-05 02:24:44, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-05 02:24:44, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 02:24:44, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-05 02:24:44, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-05 02:24:44, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘ValidateBitLockerState’ in C:\Windows\System32\BdeSysprep.dll; executing it
2017-10-05 02:24:44, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘ValidateBitLockerState’ from C:\Windows\System32\BdeSysprep.dll without error
2017-10-05 02:24:44, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘SysprepGeneralizeValidate’ in C:\Windows\System32\AppxSysprep.dll; executing it
2017-10-05 02:24:44, Info SYSPRP Entering SysprepGeneralizeValidate (Appx) – validating whether all apps are also provisioned.
2017-10-05 02:24:44, Error SYSPRP Package Microsoft.Messaging_2.15.20002.0_x86__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-05 02:24:44, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-05 02:24:44, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-05 02:24:44, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-05 02:24:44, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-05 02:24:44, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-05 02:24:44, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-05 02:24:44, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-05 02:24:50, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2017-10-05 02:24:50, Info [0x0f004d] SYSPRP The time is now 2017-10-05 02:24:50
2017-10-04 02:25:47, Info SYSPRP ========================================================
2017-10-04 02:25:47, Info SYSPRP === Beginning of a new sysprep run ===
2017-10-04 02:25:47, Info SYSPRP ========================================================
2017-10-04 02:25:47, Info [0x0f004d] SYSPRP The time is now 2017-10-04 02:25:47
2017-10-04 02:25:47, Info [0x0f004e] SYSPRP Initialized SysPrep log at C:\windows\system32\sysprep\Panther
2017-10-04 02:25:47, Info [0x0f0054] SYSPRP ValidateUser:User has required privileges to sysprep machine
2017-10-04 02:25:47, Info [0x0f007e] SYSPRP FCreateTagFile:Tag file C:\windows\system32\sysprep\Sysprep_succeeded.tag does not already exist, no need to delete anything
2017-10-04 02:25:47, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘GENERALIZE’
2017-10-04 02:25:47, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘OOBE’
2017-10-04 02:25:47, Info [0x0f005f] SYSPRP ParseCommands:Found supported command line option ‘SHUTDOWN’
2017-10-04 02:25:47, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘cleanup’ internal providers.
2017-10-04 02:25:47, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 3
2017-10-04 02:25:47, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml, and mode
2017-10-04 02:25:47, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Cleanup.xml
2017-10-04 02:25:47, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-04 02:25:47, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-04 02:25:47, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-04 02:25:47, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-04 02:25:47, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-04 02:25:47, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-04 02:25:47, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-04 02:25:47, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘Sysprep_Clean_Validate_Opk’ in C:\Windows\System32\spopk.dll; executing it
2017-10-04 02:25:47, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘Sysprep_Clean_Validate_Opk’ from C:\Windows\System32\spopk.dll without error
2017-10-04 02:25:47, Info [0x0f00d7] SYSPRP WinMain:Pre-validing ‘generalize’ internal providers.
2017-10-04 02:25:47, Info SYSPRP RunExternalDlls:Running platform actions specified in action file for phase 1
2017-10-04 02:25:47, Info [0x0f00ba] SYSPRP SysprepSession::CreateSession: Successfully created instance with mount path C:, action file C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml, and mode
2017-10-04 02:25:47, Info SYSPRP SysprepSession::Validate: Beginning action execution from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml
2017-10-04 02:25:47, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-04 02:25:47, Info SYSPRP ActionPlatform::GetValue: Getting value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep
2017-10-04 02:25:47, Warning SYSPRP ActionPlatform::GetValue: Error from RegQueryValueEx on value SysprepMode under key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\Sysprep; dwRet = 0x2
2017-10-04 02:25:47, Info SYSPRP SysprepSession::CreateXPathForSelection: Sysprep mode in registry is
2017-10-04 02:25:47, Info SYSPRP ActionPlatform::GetStringValue: Getting REG_SZ value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-04 02:25:47, Info SYSPRP ActionPlatform::GetValue: Getting value PROCESSOR_ARCHITECTURE under key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
2017-10-04 02:25:47, Info SYSPRP SysprepSession::CreateXPathForSelection: Processor architecture in registry is AMD64
2017-10-04 02:25:47, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘ValidateBitLockerState’ in C:\Windows\System32\BdeSysprep.dll; executing it
2017-10-04 02:25:47, Info [0x0f0081] SYSPRP ActionPlatform::LaunchModule: Successfully executed ‘ValidateBitLockerState’ from C:\Windows\System32\BdeSysprep.dll without error
2017-10-04 02:25:47, Info [0x0f0080] SYSPRP ActionPlatform::LaunchModule: Found ‘SysprepGeneralizeValidate’ in C:\Windows\System32\AppxSysprep.dll; executing it
2017-10-04 02:25:47, Info SYSPRP Entering SysprepGeneralizeValidate (Appx) – validating whether all apps are also provisioned.
2017-10-04 02:25:47, Error SYSPRP Package Microsoft.Messaging_2.15.20002.0_x86__8wekyb3d8bbwe was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2017-10-04 02:25:47, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2017-10-04 02:25:47, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
2017-10-04 02:25:47, Error [0x0f0082] SYSPRP ActionPlatform::LaunchModule: Failure occurred while executing ‘SysprepGeneralizeValidate’ from C:\Windows\System32\AppxSysprep.dll; dwRet = 0x3cf2
2017-10-04 02:25:47, Error SYSPRP SysprepSession::Validate: Error in validating actions from C:\Windows\System32\Sysprep\ActionFiles\Generalize.xml; dwRet = 0x3cf2
2017-10-04 02:25:47, Error SYSPRP RunPlatformActions:Failed while validating SysprepSession actions; dwRet = 0x3cf2
2017-10-04 02:25:47, Error [0x0f0070] SYSPRP RunExternalDlls:An error occurred while running registry sysprep DLLs, halting sysprep execution. dwRet = 0x3cf2
2017-10-04 02:25:47, Error [0x0f00d8] SYSPRP WinMain:Hit failure while pre-validate sysprep generalize internal providers; hr = 0x80073cf2
2017-10-04 02:25:52, Info [0x0f0052] SYSPRP Shutting down SysPrep log
2017-10-04 02:25:52, Info [0x0f004d] SYSPRP The time is now 2017-10-04 02:25:52
I used CCleaner app to fix the issue:-
Using CCleaner, you can remove all Appx Package one by one, Also plz mind that bitlocker is not on on the pc and not even lock symbol should appear on drive letter.
This troubleshooting worked for me! Before this troubleshooting, it was very irritating for me to find the solution on google but one worked for me!
Enjoy!@!
That error message occurs again after updating Windows 10 Enterprise to version 1709 OS build 16299.248.
I am using Geek Uninstaller.
Removing all Windows Store Apps.
Keep come up with HoloCamere package name… and the Sysprep stop working.
Thank you
I have used the powershell scripts to remove all apps in the past, and always worked perfectly. However, I am getting this error:
….
18-03-06 13:18:56, Info SYSPRP Entering SysprepGeneralizeValidate (Appx) – validating whether all apps are also provisioned.
2018-03-06 13:18:56, Error SYSPRP Package AdobeSystemsIncorporated.AdobePhotoshopExpress_2.0.149.0_x64__ynb6jyjzte8ga was installed for a user, but not provisioned for all users. This package will not function properly in the sysprep image.
2018-03-06 13:18:56, Error SYSPRP Failed to remove apps for the current user: 0x80073cf2.
2018-03-06 13:18:56, Error SYSPRP Exit code of RemoveAllApps thread was 0x3cf2.
….
I have run the script to remove all and disable all, looking in installed programs, photoshop express is NOT listed as being installed. I cannot find any folders pertaining to photoshop, and all users except the default users have been deleted. STILL getting the same error!