Hi Shaik,
This occurs because the Store app Microsoft.Windows.SecondaryTileExperience is installed for a user but its provisioned copy still exists in the system image, which blocks Sysprep. The correct approach is to remove the package for all users first, not only the current profile, otherwise Remove-AppxPackage returns error 0x80073CF2. Run PowerShell as Administrator and execute: Get-AppxPackage -AllUsers Microsoft.Windows.SecondaryTileExperience | Remove-AppxPackage -AllUsers Then remove the provisioned copy from the OS image using: Get-AppxProvisionedPackage -Online | Where-Object {$_.DisplayName -like "Microsoft.Windows.SecondaryTileExperience"} | Remove-AppxProvisionedPackage -Online. Reboot the server and run Sysprep again; if the error persists, check C:\Windows\System32\Sysprep\Panther\setupact.log because another Store app may be triggering the same condition.
I hope it's helpful. If it is, please give it a thump up or an accept answer, appreciate it :)
Harry.