So I did the 25H2 update, which constantly failed at first but then eventually succeeded.
Then I was greeted with that Microsoft trying to be Apple "Getting things ready" stuff. I had to log in using my password, set up my pin again etc, then I got nothing but a black screen. I could ctrl+alt+delete, which would make the menu appear, and when I selected Task Manager I'd get the same black screen again, but if I alt+tabbed I could see Task Manager being open. After about an hour I rebooted and I was greeted with that setup wizard where it askes you all these questions. Well, at least it asked one and then it went to a black screen again. Another reboot got me to the next screen of the wizard etc...
Then I finally got into Windows, my personal settings were all gone (I was back to light mode, the search, Outlook, Microsoft Store etc were all back on the taskbar). I tried to set it back to dark mode, but right clicking on the desktop and choosing Personalize gave me a dialog saying "ms-settings:personalization This file does not have an app associated with it for performing this action. Please install an app or, if one is already installed, create and association in the Default Apps Settings Page.". So I right clicked the start menu button to go into Settings, but that did nothing. I opened the start menu and all the apps installed through Microsoft Store and stuff like the calculator had no icons and garbage names, like e.g. "ms-resource:AppName". Then I noticed the Microsoft Store on the taskbar didn't have an icon. Turns out it was completely broken.
I ran this stuff and some variations ChatGPT gave me
$AllUserInboxAppsKey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\InboxApplications" $AllUserApps = Get-ChildItem -Path $AllUserInboxAppsKey ForEach($Key in $AllUserApps) { Add-AppxPackage -DisableDevelopmentMode -Register (Get-ItemProperty -Path $Key.PsPath).Path } $AllUserAppsKey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications" $AllUserApps = Get-ChildItem -Path $AllUserAppsKey ForEach($Key in $AllUserApps) { Add-AppxPackage -DisableDevelopmentMode -Register (Get-ItemProperty -Path $Key.PsPath).Path }
Which gives me this whole deployment thing in PowerShell, but most of all the following errors:
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF6, Package could not be registered. error 0x8007007E: Failed to load the extension DLL due to the following error: The specified module could not be found. . NOTE: For additional information, look for [ActivityId] d55c9379-46a3-0007-3fcd-e2d6a346dc01 in the Event Log or use the command line Get-AppPackageLog -ActivityID d 55c9379-46a3-0007-3fcd-e2d6a346dc01 At line:4 char:5 + Add-AppxPackage -DisableDevelopmentMode -Register (Get-ItemProper ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : WriteError: (C:\Windows\Syst...ppxManifest.xml:String) [Add-AppxPackage], IOException
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
Add-AppxPackage : Cannot find path 'C:\Users\{user_name}\%SYSTEMDRIVE%\Program Files\WindowsA
pps\Microsoft.ApplicationCompatibilityEnhancements_2024.401.617.0_neutral_~_8wekyb3d8bb
we\AppxMetadata\AppxBundleManifest.xml' because it does not exist.
At line:10 char:5
+ Add-AppxPackage -DisableDevelopmentMode -Register (Get-ItemProper ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Users\{user_name}\...dleManifest.xml:Strin
g) [Add-AppxPackage], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Comma
nds.AddAppxPackageCommand
Add-AppxPackage : Cannot find path 'C:\Users\{user_name}\%SYSTEMDRIVE%\Program Files\WindowsA
pps\Microsoft.WebpImageExtension_2024.401.617.0_neutral_~_8wekyb3d8bbwe\AppxMetadata\Ap
pxBundleManifest.xml' because it does not exist.
At line:10 char:5
+ Add-AppxPackage -DisableDevelopmentMode -Register (Get-ItemProper ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Users\{user_name}\...dleManifest.xml:Strin
g) [Add-AppxPackage], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Comma
nds.AddAppxPackageCommand
I got the ISO to fix it, and it ran for a while but at some point the installer closed and it gave me a dialog saying Windows 11 installation failed.
This is the final bit from setupact.log
2025-10-31 21:15:46, Info MOUPG Finalize: Retrieving downlevel ticks from registry...
2025-10-31 21:15:46, Info MOUPG Finalize: Converting [1774] downlevel ticks to seconds...
2025-10-31 21:15:46, Info MOUPG Finalize: Reporting total downlevel time: [8870 seconds]
2025-10-31 21:15:46, Info MOUPG CSetupDiagnostics: Tracing Data [DWORD] -> [Setup360DownlevelTime]=[0x22A6] [066af500-706d-4144-ab77-7620a72acb3d][80d9d203-b147-4c9f-af4a-a3af5c2bb918][][0x1]
2025-10-31 21:15:46, Info MOUPG MoSetupPlatform: Releasing NewSystem object...
2025-10-31 21:15:46, Info SP Exiting read-only mode
2025-10-31 21:15:46, Info Set Watson bucketing parameter #3 to 1
2025-10-31 21:15:46, Info SP Persist diagnostics data for new system for future uploading
2025-10-31 21:15:46, Info Persisting diagnostics data to C:\$WINDOWS.~BT\Sources\Diagnostics\diagnostics.dat
2025-10-31 21:15:46, Info Diagnostics data saved successfully
2025-10-31 21:15:46, Warning SP SPUninitializeNetwork: Not running in Windows PE; will not try to uninitialize network
2025-10-31 21:15:46, Info SP OPERATIONTRACK: CNewSystem Release
2025-10-31 21:15:46, Info MOUPG MoSetupPlatform: NewSystem object released!
2025-10-31 21:15:46, Info MOUPG MoSetupPlatform: Release Identifier -> [FinalizeExit]
2025-10-31 21:15:46, Info MOUPG MoSetupPlatform: Releasing Setup Platform object...
2025-10-31 21:15:46, Info SP Releasing the setup platform
2025-10-31 21:15:46, Info SP StopTelemetry: 1
2025-10-31 21:15:46, Info SP UploadTelemetryData: 0
2025-10-31 21:15:46, Info SP CorrelationVector: M6xiMj8l0kuBavaG.34
2025-10-31 21:15:46, Info SP Try to merge diagnostics data from default new system data file
2025-10-31 21:15:46, Info Initializing diagnostics helper; data file = C:\$WINDOWS.~BT\Sources\Diagnostics\diagnostics.dat
2025-10-31 21:15:46, Info Found existing diagnostics data, attempting to load it.
2025-10-31 21:15:46, Info Merging diagnostics data for WatsonBucket
2025-10-31 21:15:46, Info Merging diagnostics data success
2025-10-31 21:15:46, Info SP Finish merge diagnostics data
2025-10-31 21:15:46, Info SP Start uploading diagnostics data for setup platform
2025-10-31 21:15:46, Info DIAGER DiagERInitialize:Entry Also Initialized the log
2025-10-31 21:15:46, Info DIAGER IDiagER::IDiagER:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::Initialize:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::Initialize:Entry
2025-10-31 21:15:46, Info DIAGER Consent Value = HKCU\Software\Microsoft\Windows\Windows Error Reporting\Consent!WinSetupDiag02 has been set to 4
2025-10-31 21:15:46, Info CONX aepic: TRACE,PicRetrieveFileInfo,950,Deprecated flag used: [0x4000]
2025-10-31 21:15:46, Info CONX aepic: TRACE,File::SetBaseFileInfoForPic,600,Retrieved "c:\$windows.~bt\sources\setuphost.exe" info from cache
2025-10-31 21:15:46, Info DIAGER DiagERAddBucketingParameters:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Entry
2025-10-31 21:15:46, Info DIAGER IDiagER::AddBucketingParameters:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=X
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=X
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=9
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=1
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=X
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=X
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=26200
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=X
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=26200
2025-10-31 21:15:46, Info DIAGER CWfpER::AddBucketingParameters:Adding bucketing param=ge_release
2025-10-31 21:15:46, Info DIAGER DiagERSetHeader:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::SetHeader:Entry
2025-10-31 21:15:46, Info DIAGER IDiagER::SetHeader:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::SetHeader:Setting header=Microsoft Windows Installation encountered a problem and needs to close. We are sorry for the inconvenience
2025-10-31 21:15:46, Info CDiagnosticsHelper::GetWatsonFilesToAttach: Attaching file C:\$WINDOWS.~BT\Sources\Panther\SetupAct.log
2025-10-31 21:15:46, Info CDiagnosticsHelper::GetWatsonFilesToAttach: Attaching file C:\$WINDOWS.~BT\Sources\Panther\diagerr.xml
2025-10-31 21:15:46, Info CDiagnosticsHelper::GetWatsonFilesToAttach: Attaching file C:\$WINDOWS.~BT\Sources\Panther\WinSetupMon.log
2025-10-31 21:15:46, Info DIAGER DiagERAddFiles:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::AddFiles:Entry
2025-10-31 21:15:46, Info DIAGER IDiagER::AddFiles:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::AddFiles:Adding file=C:\$WINDOWS.~BT\Sources\Panther\SetupAct.log
2025-10-31 21:15:46, Info DIAGER CWfpER::AddFiles:Adding file=C:\$WINDOWS.~BT\Sources\Panther\diagerr.xml
2025-10-31 21:15:46, Info DIAGER CWfpER::AddFiles:Adding file=C:\$WINDOWS.~BT\Sources\Panther\WinSetupMon.log
2025-10-31 21:15:46, Info DIAGER DiagERSubmitEx:Entry
2025-10-31 21:15:46, Info DIAGER CWfpER::Submit:Entry
2025-10-31 21:15:48, Info DIAGER Watson Error Report submitted and Result=2
2025-10-31 21:15:48, Info DIAGER DiagERTerminate:Entry
2025-10-31 21:15:48, Info DIAGER CWfpER::~CWfpER:Entry
2025-10-31 21:15:48, Info DIAGER Consent Value = HKCU\Software\Microsoft\Windows\Windows Error Reporting\Consent!WinSetupDiag02 has been cleaned out
2025-10-31 21:15:48, Info DIAGER IDiagER::~IDiagER:Entry
2025-10-31 21:15:48, Info Key CollectTrace is not available.
2025-10-31 21:15:48, Info SP Existing CV from Telemetry : [M6xiMj8l0kuBavaG.33]
2025-10-31 21:15:48, Info SP Input CV : [M6xiMj8l0kuBavaG.34]
2025-10-31 21:15:48, Warning SP Input CV is different form existing CV
2025-10-31 21:15:49, Info SP Upload telemetry data based on environment variable
2025-10-31 21:15:49, Info Already stored correlation vector [M6xiMj8l0kuBavaG] in config file
2025-10-31 21:15:49, Info Input correlation vector is [M6xiMj8l0kuBavaG]
2025-10-31 21:15:49, Info Two correlation vectors are identical
2025-10-31 21:15:49, Info Already stored original correlation vector [M6xiMj8l0kuBavaG.21] in config file
2025-10-31 21:15:49, Info Input correlation vector is [M6xiMj8l0kuBavaG.34]
2025-10-31 21:15:49, Warning Get a different correlation vector
2025-10-31 21:15:49, Info Copy telemetry file: source folder: C:\$WINDOWS.~BT\Sources\Panther, destination folder: C:\ProgramData\Microsoft\Diagnosis\ETLLogs
2025-10-31 21:15:49, Info Copy etl files: source: C:\$WINDOWS.~BT\Sources\Panther\DlTel-Merge.etl, destination: C:\ProgramData\Microsoft\Diagnosis\ETLLogs\DlTel-Merge.etl
2025-10-31 21:15:49, Info pCopyTelemetryFile: Wrote CV M6xiMj8l0kuBavaG.34 to ETL C:\ProgramData\Microsoft\Diagnosis\ETLLogs\DlTel-Merge.etl:$ETLUNIQUECVDATA
2025-10-31 21:15:49, Info Copy etl files: source: C:\$WINDOWS.~BT\Sources\Panther\DlTel-Merge00001.etl, destination: C:\ProgramData\Microsoft\Diagnosis\ETLLogs\DlTel-Merge00001.etl
2025-10-31 21:15:49, Info pCopyTelemetryFile: Wrote CV M6xiMj8l0kuBavaG.34 to ETL C:\ProgramData\Microsoft\Diagnosis\ETLLogs\DlTel-Merge00001.etl:$ETLUNIQUECVDATA
2025-10-31 21:15:49, Info Diagtrack service is running
2025-10-31 21:15:49, Info Successfully Forceuploaded the telemetry data.
2025-10-31 21:15:49, Info Upload files successfully so we can remove all etl files.
2025-10-31 21:15:49, Info SP Closing Panther Logging
2025-10-31 21:15:49, Info MOUPG MoSetupPlatform: Setup Platform object released!
2025-10-31 21:15:49, Info MOUPG Finalize: Leaving Execute Method
2025-10-31 21:15:49, Warning MOUPG CSetupDiagnostics::ReportData - Not reporting WINDLP data point [0x2004]
2025-10-31 21:15:49, Warning MOUPG CSetupDiagnostics::ReportData - Not reporting WINDLP data point [0x2003]
2025-10-31 21:15:49, Warning MOUPG CSetupDiagnostics::ReportData - Not reporting WINDLP data point [0x2001]
2025-10-31 21:15:49, Info MOUPG ProgressHandlerAction: Sending final progress message for action [0].
2025-10-31 21:15:49, Info MOUPG ProgressHandlerAction FinalUpdate: 0x0, 0x0 / 0x0, 0x0
2025-10-31 21:15:49, Info MOUPG ProgressHandlerAction: Sending final progress message for action [0].
2025-10-31 21:15:49, Info MOUPG ProgressHandlerAction FinalUpdate: 0x0, 0x0 / 0x0, 0x0
2025-10-31 21:15:49, Info MOUPG Signalling actions thread to shut down.
2025-10-31 21:15:49, Info MOUPG Waiting for actions thread to exit.
2025-10-31 21:15:49, Info MOUPG Actions thread has exited.
2025-10-31 21:15:49, Warning MOUPG CSetupDiagnostics::ReportData - Not reporting WINDLP data point [0x2004]
2025-10-31 21:15:49, Warning MOUPG CSetupDiagnostics::ReportData - Not reporting WINDLP data point [0x2000]
2025-10-31 21:15:49, Warning MOUPG CSetupDiagnostics::ReportData - Not reporting WINDLP data point [0x3000]
2025-10-31 21:15:49, Info MOUPG DlpTask: Leaving Execute Method
2025-10-31 21:15:49, Info MOUPG SetupManager::ExecuteCustomScript: Type = [0x3]
2025-10-31 21:15:49, Info MOUPG SetupManager::ExecuteCustomScript: No scripts found. Finished type [0x3]
2025-10-31 21:15:49, Info MOUPG SetupNotify: Specifying extended data [0x50016] for error [0x8007042B].
2025-10-31 21:15:49, Info MOUPG CSetupUIManager: Showing error message
2025-10-31 21:15:49, Info MOUPG CInstallUI::ShowErrorMessage: Posted MSG_INSTALLUI_SWITCH_TO_ERROR_PAGE
2025-10-31 21:15:49, Info MOUPG CInstallUI::CInstallUIMessageWindow::SwitchToErrorPage
2025-10-31 21:15:49, Info MOUPG SetupHost: Reporting error event -> [0x8007042B, 0x50016]
2025-10-31 21:15:49, Info MOUPG CInstallUI::SwitchToErrorPage
2025-10-31 21:15:49, Warning MOUPG SetupNotify::ReportEvent - Report ID or Event Reporter not available.
2025-10-31 21:15:49, Info MOUPG SetupManager: FailureCount = [4]
2025-10-31 21:15:49, Info MOUPG SetupManager: Requesting cleanup level [0x2] from parent process.
2025-10-31 21:15:49, Info MOUPG Setup phase change: [SetupPhaseError] -> [SetupPhaseUnpack]
2025-10-31 21:15:49, Info MOUPG SetupManager: Deleting task: [Prepare]...
2025-10-31 21:15:49, Info MOUPG SetupManager: Deleting task: [Install]...
2025-10-31 21:15:49, Info MOUPG SetupManager: Deleting task: [Exit]...
2025-10-31 21:15:49, Info MOUPG SetupManager: Found unpack task! Restarting layout action...
2025-10-31 21:15:49, Info MOUPG CInstallUI::ShowMessageBox: Showing MessageBox
2025-10-31 21:15:50, Error MOUPG CSetupManager::Execute(389): Result = 0x8007042B
2025-10-31 21:15:50, Error MOUPG CSetupHost::Execute(563): Result = 0x8007042B
2025-10-31 21:15:50, Info MOUPG SetupHost: Using Diagnostic tool: ["C:\$WINDOWS.~BT\Sources\SetupDiag.exe" /Scenario:Upgrade /ZipLogs:False /Format:xml /Output:C:\WINDOWS\logs\SetupDiag\SetupDiagResults.xml /RegPath:HKEY_LOCAL_MACHINE\SYSTEM\Setup\SetupDiag\Results]
2025-10-31 21:15:50, Info MOUPG SetupHost: Diagnostic results location: [C:\WINDOWS\logs\SetupDiag\SetupDiagResults.xml]
2025-10-31 21:15:50, Info MOUPG SetupHost: Diagnostic Analysis timeout value: [90000] ms
2025-10-31 21:15:50, Info MOUPG SetupHost: Diagnostic Analysis - START
2025-10-31 21:15:50, Info MOUPG CSetupDiagnostics: Tracing Data [TIME] -> [DiagnosticAnalysisStart]=[2025-10-31 21:15:50] [066af500-706d-4144-ab77-7620a72acb3d][80d9d203-b147-4c9f-af4a-a3af5c2bb918][][0x1]
2025-10-31 21:16:18, Info MOUPG SetupHost: Diagnostic tool execution result: [0x80004003]
2025-10-31 21:16:18, Info MOUPG CSetupDiagnostics: Tracing Data [DWORD] -> [DiagnosticAnalysisResult]=[0x80004003] [066af500-706d-4144-ab77-7620a72acb3d][80d9d203-b147-4c9f-af4a-a3af5c2bb918][][0x1]
2025-10-31 21:16:18, Error MOUPG CSetupHost::ExecuteDiagnosticAnalysis(1881): Result = 0x80004003
2025-10-31 21:24:17, Info MOUPG CInstallUI::Quit: Posted MSG_INSTALLUI_FORCE_QUIT
2025-10-31 21:24:17, Info MOUPG CInstallUI::CInstallUIMessageWindow::ForceQuit
2025-10-31 21:24:17, Info MOUPG Force ending Message pump
2025-10-31 21:24:17, Info MOUPG CInstallUI::ExitInstance
2025-10-31 21:24:17, Info MOUPG SetupUI: Calling PowerClearRequest with type [0x1]...
2025-10-31 21:24:17, Info MOUPG SetupUI: Power request cleared!
2025-10-31 21:24:17, Info MOUPG SetupUI: Requesting main window removal...
2025-10-31 21:24:17, Info MOUPG SetupUI: Posting Quit Message...
2025-10-31 21:24:17, Info MOUPG SetupUI: Waiting for message thread...
2025-10-31 21:24:17, Info MOUPG SetupUI: Main window removed.
2025-10-31 21:24:17, Info MOUPG **************** SetupHost Logging End ****************
And this is from setuperr.log
2025-10-31 18:48:03, Error CDeploymentSession::IsRangeRequestSupported(4718): Result = 0x80040154
2025-10-31 18:48:03, Error IsRangeRequestSupported failed with: [80040154 [Error,Facility=FACILITY_ITF,Code=340 (0x0154)]]. Setting RangeRequestSupported to FALSE
2025-10-31 18:48:05, Error MOUPG CDlpActionImpl<class CDlpErrorImpl<class CDlpObjectInternalImpl<class CUnknownImpl<class IMoSetupDlpAction> > > >::Suspend(1291): Result = 0xC1800104[gle=0x00000002]
2025-10-31 18:48:05, Error MOUPG CDlpTask::CheckUserInterruptEx(3094): Result = 0x800704D3
2025-10-31 18:48:05, Error MOUPG CDlpTask::CheckUserInterrupt(3147): Result = 0x800704D3
2025-10-31 18:48:05, Error MOUPG CSetupManager::ExecuteInstallMode(1068): Result = 0x800705BB
2025-10-31 18:48:05, Error MOUPG CSetupManager::ExecuteDownlevelMode(622): Result = 0x800705BB
2025-10-31 18:48:05, Error MOUPG CSetupManager::Execute(358): Result = 0x800705BB
2025-10-31 18:48:05, Error MOUPG CSetupHost::Execute(517): Result = 0x800705BB
2025-10-31 18:48:32, Error CONX Windows::Compat::Appraiser::RegistryMarkerOutputter::InitializeIndicatorsToRemoveDuplicates (465): Failed to find list table of indicators to remove duplicates, swallowing: [0x80070490].[gle=0x80070490]
2025-10-31 18:48:32, Error CONX Windows::Compat::Appraiser::RegistryMarkerOutputter::Initialize (348): Failed to initialize indicators to remove duplicates, swallowing: [0x80070490].[gle=0x80070490]
2025-10-31 18:54:27, Error CDeploymentSession::IsRangeRequestSupported(4718): Result = 0x80040154
2025-10-31 18:54:27, Error IsRangeRequestSupported failed with: [80040154 [Error,Facility=FACILITY_ITF,Code=340 (0x0154)]]. Setting RangeRequestSupported to FALSE
2025-10-31 19:08:42, Error DU DU::CDUSession::Search: Failed to set WU internal configuration property for targeted scans. hr = 0x80070057
2025-10-31 19:08:57, Error CONX Windows::Compat::Appraiser::RegistryMarkerOutputter::InitializeIndicatorsToRemoveDuplicates (465): Failed to find list table of indicators to remove duplicates, swallowing: [0x80070490].[gle=0x80070490]
2025-10-31 19:08:57, Error CONX Windows::Compat::Appraiser::RegistryMarkerOutputter::Initialize (348): Failed to initialize indicators to remove duplicates, swallowing: [0x80070490].[gle=0x80070490]
2025-10-31 19:09:48, Error CONX aeinv: ERROR,File::QueryUsn,2235,Exception: 0x80070001 onecore\internal\base\inc\appcompat\inventory\file.cpp(2209)\aeinv.dll!00007FFE1FE85C49: (caller: 00007FFE1FE3E346) Exception(22) tid(80a4) 80070001 Incorrect function.##
2025-10-31 19:09:48, Error CONX aeinv: ERROR,File::QueryUsn,2235,Exception: 0x80070001 onecore\internal\base\inc\appcompat\inventory\file.cpp(2209)\aeinv.dll!00007FFE1FE85C49: (caller: 00007FFE1FE3E346) Exception(23) tid(80a4) 80070001 Incorrect function.##
2025-10-31 19:09:54, Error CONX Appraiser: ERROR,SdbpGetMatchingInfoBlocksInternal,2312,TAGREF array insufficient
2025-10-31 20:46:01, Error SP pSPRemoveUpgradeRegTree: failed to delete reg tree HKLM\SYSTEM\Setup\Upgrade[gle=0x00000005]
2025-10-31 20:51:41, Error MIG CMXEXmlPlugin::StopTimedExecution: AppxUpgradeMigrationPlugin.dll:Gather - plugin call timed out
2025-10-31 20:51:41, Error [0x080389] MIG Failure while calling IDiscovery->Gather for Plugin={ServerPath="Microsoft-Windows-AppX-Deployment-Server\AppxUpgradeMigrationPlugin.dll", CLSID={AE27C1A6-25F2-45FD-9A28-081B81F29E0A}, ThreadingModel=Apartment, ExceptionHandling=Default}. Error: 0x800705B4
2025-10-31 20:51:41, Error MIG Error 0x000005B4 while executing critical action Action,CMXEXmlPlugin,E:\$WINDOWS.~TMP\ReplacementManifests,Microsoft-Windows-AppX-Deployment-Server\AppxUpgradeMigrationPlugin.dll,{AE27C1A6-25F2-45FD-9A28-081B81F29E0A},Apartment,Default. Migration will abort[gle=0x000000cb]
2025-10-31 20:51:42, Error Gather failed. Last error: 0x00000000
2025-10-31 20:51:42, Error SP pSPDoMainGather: Gather operation failed. Error: 0x0000002C
2025-10-31 20:51:42, Error SP CGatherData: Migration phase failed. Status: 44
2025-10-31 20:51:42, Error SP Operation failed: Gather data, scope: EVERYTHING. Error: 0x8007042B[gle=0x000000b7]
2025-10-31 21:10:14, Error SP pSPRemoveUpgradeRegTree: failed to delete reg tree HKLM\SYSTEM\Setup\Upgrade[gle=0x00000005]
2025-10-31 21:15:44, Error MIG CMXEXmlPlugin::StopTimedExecution: AppxUpgradeMigrationPlugin.dll:Gather - plugin call timed out
2025-10-31 21:15:44, Error [0x080389] MIG Failure while calling IDiscovery->Gather for Plugin={ServerPath="Microsoft-Windows-AppX-Deployment-Server\AppxUpgradeMigrationPlugin.dll", CLSID={AE27C1A6-25F2-45FD-9A28-081B81F29E0A}, ThreadingModel=Apartment, ExceptionHandling=Default}. Error: 0x800705B4
2025-10-31 21:15:44, Error MIG Error 0x000005B4 while executing critical action Action,CMXEXmlPlugin,E:\$WINDOWS.~TMP\ReplacementManifests,Microsoft-Windows-AppX-Deployment-Server\AppxUpgradeMigrationPlugin.dll,{AE27C1A6-25F2-45FD-9A28-081B81F29E0A},Apartment,Default. Migration will abort[gle=0x000000cb]
2025-10-31 21:15:44, Error Gather failed. Last error: 0x00000000
2025-10-31 21:15:44, Error SP pSPDoMainGather: Gather operation failed. Error: 0x0000002C
2025-10-31 21:15:44, Error SP CGatherData: Migration phase failed. Status: 44
2025-10-31 21:15:44, Error SP Operation failed: Gather data, scope: EVERYTHING. Error: 0x8007042B[gle=0x000000b7]
2025-10-31 21:15:44, Error SP COperationQueue::Sort: Could not find an execution phase for 62
2025-10-31 21:15:44, Error SP ExecuteOperations: Operations cannot be sorted. This is a fatal failure.
2025-10-31 21:15:44, Error SP ExecuteOperations: Main operation execution failed. Error: 0x8007000D
2025-10-31 21:15:44, Error SP ExecuteOperations: Failed execution phase Finalize. Error: 0x8007000D
2025-10-31 21:15:44, Error MOUPG MoSetupPlatform: Finalize reported failure![gle=0x0000000d]
2025-10-31 21:15:44, Error MOUPG MoSetupPlatform: Using action error code: [0x8007042B][gle=0x0000000d]
2025-10-31 21:15:44, Error MOUPG CDlpActionFinalize::ExecuteSetupPlatformFinalize(1359): Result = 0x8007042B[gle=0x0000000d]
2025-10-31 21:15:44, Error MOUPG CDlpActionFinalize::ExecuteRoutine(567): Result = 0x8007042B[gle=0x0000000d]
2025-10-31 21:15:45, Error MOUPG CDlpActionImpl<class CDlpErrorImpl<class CDlpObjectInternalImpl<class CUnknownImpl<class IMoSetupDlpAction> > > >::Execute(503): Result = 0x8007042B
2025-10-31 21:15:45, Error MOUPG CDlpTask::ExecuteAction(3334): Result = 0x8007042B
2025-10-31 21:15:45, Error MOUPG CDlpTask::ExecuteActions(3487): Result = 0x8007042B
2025-10-31 21:15:45, Error MOUPG CDlpTask::Execute(1643): Result = 0x8007042B
2025-10-31 21:15:45, Error MOUPG CSetupManager::ExecuteTask(3267): Result = 0x8007042B
2025-10-31 21:15:45, Error MOUPG CSetupManager::ExecuteTask(3229): Result = 0x8007042B
2025-10-31 21:15:45, Error MOUPG CSetupManager::ExecuteInstallMode(1254): Result = 0x8007042B
2025-10-31 21:15:45, Error MOUPG CSetupManager::ExecuteDownlevelMode(684): Result = 0x8007042B
2025-10-31 21:15:50, Error MOUPG CSetupManager::Execute(389): Result = 0x8007042B
2025-10-31 21:15:50, Error MOUPG CSetupHost::Execute(563): Result = 0x8007042B
2025-10-31 21:16:18, Error MOUPG CSetupHost::ExecuteDiagnosticAnalysis(1881): Result = 0x80004003
Anyone know how to fix this? And yes I've already done a million DISMs and scannows... And no I'm not doing a clean install.