Forum Discussion
Jeronimo2440
Oct 04, 2021Iron Contributor
The i7-7700K meet the minimun requierments to run Win11. But its not suported, Why?
Hi, I have an i7-7700K. This CPU have TPM 2.0, It's compatible with Secure Boot, it have 4 core up to 4.2 GHz. It also is 64bit. I don't know why this CPU is not supported by Microsoft to install W...
Mousefluff
Nov 01, 2021Iron Contributor
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)
Sixpiece
Nov 01, 2021Iron Contributor
There’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;