Sysprp Failed To Remove Apps For The Current User 0x80073cf2 |top| -
Once you have the package name (e.g., Microsoft.MicrosoftEdge.Stable ), you must remove it for the current user and the entire system using PowerShell with Admin rights. Sysprep fails with Microsoft Store apps - Windows Client
Get-AppxPackage -AllUsers -Name <PackageName> | Remove-AppxPackage -force sysprp failed to remove apps for the current user 0x80073cf2
Add-AppxPackage -DisableDevelopmentMode -Register "$env:SystemRoot\SystemApps*\AppxManifest.xml" Once you have the package name (e
If removal fails, force removal from the image (offline servicing recommended for production): you can use an answer file.
# Run as Administrator Get-AppxProvisionedPackage -Online | Where-Object $_.DisplayName -notlike "*Microsoft*" | Remove-AppxProvisionedPackage -Online
If you require specific apps to remain or want to suppress the removal process entirely, you can use an answer file.