The error occurs during FIRST_BOOT → MIGRATE_DATA because the user profile folder expected by setup (C:\Users\PC) does not match the actual profile folder in use (C:\Users\PC.000), and there is conflicting content in C:\Users\PC at the time of migration.
The log shows:
- “User profile suffix mismatch: upgrade asked for "PC", actual suffix is: "PC.000"”
- “Conflicting profile folder content (C:\Users\PC): … PowerShell_transcript…txt”
- “User profile suffix mismatch, upgrade cannot continue.”
This matches a general class of in‑place upgrade failures where profile or driver migration cannot complete cleanly and setup aborts with a 0xC1900101‑0x3000D–style failure in the MIGRATE_DATA phase. For Windows 11, such FIRST_BOOT migration failures are treated similarly to other upgrade errors and are typically resolved by removing the conflicting condition and then re‑running setup.
Based on the logs and the behavior described, the core problem is that PowerShell transcription is actively writing into C:\Users\PC during the migration phase, leaving content in the old profile path while the active profile is C:\Users\PC.000. Setup detects both the suffix mismatch and the conflicting content and fails the migration.
To allow the in‑place upgrade to complete, the conflicting condition must be removed so that setup can migrate the profile cleanly. The practical mitigation is:
- Temporarily disable the Group Policy that enables PowerShell transcription so that no new transcript files are created under
C:\Users\PCduring the upgrade. - Ensure that no PowerShell sessions are running when the upgrade is started, so that no transcript files are being written during FIRST_BOOT.
- Re‑run the in‑place upgrade to Windows 11 25H2.
This is analogous in spirit to other documented upgrade issues where a system component (drivers, services, or policies) interferes with migration. For example, Windows upgrade guidance for 0xC1900101‑class errors recommends addressing interfering drivers or services and then re‑running the in‑place upgrade rather than attempting to repair the partially upgraded state.
If the system has additional corruption or servicing issues (for example, if DISM or CBS logs show errors, or if other updates are failing), an in‑place repair/upgrade using the Windows 11 ISO is also a supported remediation path, as shown in similar Windows 11 upgrade/repair scenarios in the references.
References:
- Get help with Windows upgrade and installation errors
- "0x80070003" error and Windows upgrade fails during "Process Drivers for Migration"
- Mijn windows updates gaan mis - Microsoft Q&A
- i get this code when i try to update windows 0x8007041D. - Microsoft Q&A
- KB5058713 fails install - Microsoft Q&A
- how to get group policy for duplicate sid - Microsoft Q&A