Ссылка:
1 |
http://www.vmwareandme.com/2013/10/solution-windows-8-and-windows-81-fatal.html#.U3smHfl_vrR |
Ошибка и решение:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
Произошла неустранимая ошибка при выполнении sysprep на компьютере. Sysprep - a fatal error occured Way of removing package is to remove the package for the user running sysprep and also remove the provisioning. 1. Import-Module Appx 2. Import-Module Dism 3. Get-AppxPackage -AllUser | Where PublisherId -eq 8wekyb3d8bbwe | Format-List -Property PackageFullName,PackageUserInformation Note -From the output of the above command, check the users for whom the package is showing up as Installed. Delete these user accounts from the reference machine, or log in to the machine using these user accounts and run Step 4 to remove the Appx Package. The above command lists all packages that were published by Microsoft and installed by any user of that reference machine. Since the machine is to be sysprepped, we assume that these user profiles no longer need the package. If you have manually provisioned apps belonging to other publishers, then use the command below to list them: Get-AppxPackage -AllUser | Format-List -Property PackageFullName,PackageUserInformation 4. Remove-AppxPackage -Package <packagefullname> 5. Remove the Provisioning using the following cmdlet: Remove-AppxProvisionedPackage -Online -PackageName <packagefullname> |
To run above commands open Windows Powershell as Administrator, UPDATE —
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
1. Go to C:\Windows\System32\Sysprep folder & edit Unattend.xml file & delete skiprearm=1. 2. Open Registrey Editor & Set GeneralizationState to 7 under HKEY_LOCAL_MACHINE\SYSTEM\Setup\Status\SysprepStatus\ 3. Open Command Prompt as Adminitrator & run below commands, msdtc -uninstall msdtc -install 4. Open Registrey Editor & Set SkipRearm to 1 Under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform\ 5. Try to run Sysprep http://www.surfacetablethelp.com/2013/08/how-to-fix-sysprep-fatal-error-in-windows-8-1.html * First you have to re-install the OS on your machine. * Disconnect all internet connectivity and sign into by a local account for doing the install process. Microsoft account might break the software. * Right-click xBox music app from Start Screen and select Unstall option. * Press Win + X from keyboard, click “Windows PowerShell (Admin)”, type Get-AppxPackage | Remove-AppxPackage, and then press Enter to run. * Re-connect to the internet until you’ve finished. |
Решение:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Нужно создать файл %windir%\system32\sysprep\Unattend.xml ______________________________________ <?xml version='1.0' encoding='utf-8'?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="generalize"> <component name="Microsoft-Windows-Security-Licensing-SLC" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SkipRearm>1</SkipRearm> </component> </settings> </unattend> ______________________________________ поставил чистую систему. установил нужный софт. все прекрасно sysprepнулось |