maiker2k3 Posted November 1, 2019 Report post Posted November 1, 2019 (edited) Good evening everyone. There is Win 8.1 (the latest all updates of Office 2016 were released) SCCM 2012, I try to create an image through the "image capture tool", I run it through TSMBAutorun.exe, when executing SYSprep it gives an error: The sequence of tasks: failure of the image capture wizard; Error Code (0x00004005) The error appears when starting the SYSprep operation in the log file, which is located: котировка 019-10-31 17:44:16, SYSPRP error 24712m1dfmmengesha.TestFrameworkwin81appxneutral06_4.0.0.7_neutral__x35ns48czryn0 package was installed for the user, but not provided for all users. This package will not work properly in the sysprep image. 2019-10-31 17:44:16, SYSPRP error Failed to uninstall applications for the current user: 0x80073cf2. 2019-10-31 17:44:16, SYSPRP error The exit code for the RemoveAllApps stream was 0x3cf2. 2019-10-31 17:44:16, error [0x0f0082] SYSPRP ActionPlatform :: LaunchModule: Crash while executing “SysprepGeneralize” from ? \ Windows \ System32 \ AppxSysprep.dll; dwRet = 0x3cf2 2019-10-31 17:44:16, SYSPRP error ActionPlatform :: ExecuteAction: error while performing an action; dwRet = 0x3cf2 2019-10-31 17:44:16, SYSPRP error ActionPlatform :: ExecuteActionList: error while performing actions; dwRet = 0x3cf2 2019-10-31 17:44:16, SYSPRP error SysprepSession :: Execute: Error while executing actions from ? \ Windows \ System32 \ Sysprep \ ActionFiles \ Generalize.xml; dwRet = 0x3cf2 2019-10-31 17:44:16, SYSPRP Error RunPlatformActions: Error performing SysprepSession actions; dwRet = 0x3cf2 2019-10-31 17:44:16, error [0x0f0070] SYSPRP RunExternalDlls: an error occurs when starting the sysprep libraries, which stops the execution of sysprep. dwRet = 0x3cf2 2019-10-31 17:44:16, error [0x0f00a8] SYSPRP WinMain: crash on hit during processing sysprep generalizes internal providers; hr = 0x80073cf2 2019-10-31 17:44:52, error [0x0f0073] SYSPRP RunExternalDlls: DLLs do not work; or we could not update the recorded state, dwRet = 0x1f 2019-10-31 17:44:52, SYSPRP WinMain error: unable to access sysprep processing and re-specialization of internal providers; h = 0x8007001f I found an MS article that such a problem may exist, here is the link:https://support.microsoft.com/en-sg/help/2769827/sysprep-fails-after-you-remove-or-update-windows -store- приложения, что-inc Where it is described that you need to remove a package that prevents Sysprep programs Sysprep log says that the problem is with the installed package (application) Package 24712m1dfmmengesha.TestFrameworkwin81appxneutral06_4.0.0.7_neutral__x35ns48czryn0 When running the Powershell cmdlet : Get-AppxPackage -AllUser | Format-List -Property PackageFullName, PackageUserInformation shows: PackageFullName: 24712m1dfmmengesha.TestFrameworkwin81appxneutral06_4.0.0.7_neutral__x35ns48czryn0 PackageUserInformation: {S-1-5-21-2572889256-3818871501-1666735131-33749 [Unknown user]: installed} When running the cmdlet Powershell - writes an error: Remove-AppxProvisionedPackage:The system cannot find the specified file. In line: 1 character: 1+ Delite-AppxProvisionedPackage -Online -PackageName 24712m1dfmmengesha.TestFrameworkwinwin ... Please help me figure out how to remove this package.. - 24712m1dfmmengesha.TestFrameworkwin81appxneutral06_4.0.0.7_neutral__x35ns48czryn0 Edited November 2, 2019 by maiker2k3 Quote Share this post Link to post Share on other sites More sharing options...
maiker2k3 Posted November 22, 2019 Report post Posted November 22, 2019 I solved the problem. We install with clean iso win8.1, the first inclusion we create a local account (disable Internet access at the time of creation) Next, we remove all Windows applications by running the following cmdlets: Import-Module Dism Get-AppxPackage -AllUser | Where PublisherId -eq 8wekyb3d8bbwe | Format-List -Property PackageFullName,PackageUserInformation Get-AppxPackage -AllUser | Format-List -Property PackageFullName,PackageUserInformation Remove-AppxPackage -Package "package name here" We remove all application packages. Now we install all updates, after again we delete all applications through the cmdlet: Remove-AppxPackage -Package "package name here" and now it captures the image for pouring on pxe Quote Share this post Link to post Share on other sites More sharing options...