Oct 05 2021 05:24 PM
Oct 05 2021 06:24 PM
Oct 05 2021 07:24 PM
@thinh191Same issue. But not solved by change date and restart.
Oct 06 2021 10:21 AM - edited Oct 07 2021 12:44 AM
I am also having this problem having previously rolled back to Windows 10 from preview release.
Oct 06 2021 10:25 AM - edited Oct 06 2021 10:26 AM
Everyone I know with this problem did the same, rolled back from the release preview on Windows 10 and got this bug when upgrading from Windows 10 to the final Windows 11. Is there really no solution for this, except for a clean install of Windows 11?
Oct 29 2021 11:32 PM
Oct 30 2021 11:21 PM
Oct 31 2021 08:49 PM
This can recover a bricked device post-upgrade (Index of 1 means Home Edition) ->
1.) Download Windows 10 ISO Image to "C:\Win11_English_x64.iso"
2.) Install WinRAR: https://www.win-rar.com/download.html?&L=0
3.) Extract ISO Image to "C:\Win11_English_x64"
4.) Start Powershell -> Start Menu -> Run -> taskmgr -> File -> Run new Task -> %SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -> Select "Create this task with administrative privileges." -> Click OK.
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine -Force
DISM /Online /Cleanup-Image /RestoreHealth /Source:C:\Win11_English_x64\sources\install.wim:1 /LimitAccess;
DISM /Online /Cleanup-Image /StartComponentCleanup /ResetBase;
./SFC /SCANNOW;
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register
"$($_.InstallLocation)\AppXManifest.xml"};
Get-AppxPackage | Reset-AppxPackage;
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\Update\Packages" -Name "UndockingDisabled" -Value "00000000";
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value "00000001";
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name "NoTaskGrouping" -Value "00000000";
./taskkill /f /im explorer.exe;
./CMD /Q /C START /REALTIME explorer.exe;
5.) Run Windows Update (6.) Finalize the patches / updates / verify integrity of the image
DISM /Online /Cleanup-Image /StartComponentCleanup /ResetBase;
./SFC /SCANNOW;