Forum Discussion
The i7-7700K meet the minimun requierments to run Win11. But its not suported, Why?
This was already solved by Microsoft (I used this on all my computers, it works perfectly.)
1.) https://www.microsoft.com/software-download/windows11 to "C:\Win11_English_x64v1.iso"
2.) 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.
3.) Run the following commands in sequential order (copy/paste the text block)...
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine -Force
Remove-Item -Path "HKLM:\SYSTEM\Setup\MoSetup" -Force -Recurse;
New-Item -Path "HKLM:\SYSTEM\Setup\MoSetup";
New-ItemProperty -Path "HKLM:\SYSTEM\Setup\MoSetup" -Name "AllowUpgradesWithUnsupportedTPMOrCPU" -PropertyType DWord -Value "00000001";
Mount-DiskImage -ImagePath "C:\Win11_English_x64v1.iso";
4.) Open Windows Explorer and select the drive labeled "CCCOMA_X64FRE_EN-US_DV9"
5.) Run setup.exe (in-place upgrade)
- AlberelloNov 01, 2021Copper ContributorThanks! We have another procedure here:
https://www.theverge.com/22715331/how-to-install-windows-11-unsupported-cpu-intel-amd-registry-regedit- MousefluffNov 01, 2021Iron Contributor
That Verge article is actually just quoting this Microsoft article (if you were wondering where it came from. My script is based on this too.)
"Ways to install Windows 11" -> https://support.microsoft.com/en-us/windows/ways-to-install-windows-11-e0edbbfb-cfc5-4011-868b-2ce77ac7c70e
- AlberelloNov 01, 2021Copper Contributor
- SixpieceNov 01, 2021Iron Contributor
thank you all for sharing… and perhaps while you are at it you may want to dual boot your computer as a Macintosh with the latest OS from Apple Big Sur: follow these instructions in order to do so:
https://www.hackintoshshop.com/2810/hackintosh-big-sur-guide/
- SixpieceNov 01, 2021Iron ContributorThere’s also another option to run Windows 11 dev environment in hyper v…
- MousefluffNov 01, 2021Iron Contributor
SixpieceIf there are real issues, which are less common, then update your drivers, run this script, etc.
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope LocalMachine -Force ./sc config EventLog start=auto;./sc config UsoSvc start=auto;./sc config wuauserv start=auto;./net start EventLog;./net start UsoSvc;./net start wuauserv; DISM /Online /Cleanup-image /Restorehealth; DISM /Online /Cleanup-Image /StartComponentCleanup /ResetBase; ./SFC /SCANNOW; Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}; Get-AppxPackage | Reset-AppxPackage;