某一天你心血來潮,打算參與Win11 預覽體驗計劃,但體驗計劃頁面卻顯示“Your PC does not meet the minimum hardware requirements for Windows11…”。
一種解決思路:
去以下網(wǎng)頁下載Offline Insider Enroll軟件,管理員權限運行后,選擇你想?yún)⑴c的體驗計劃通道。
Offline Insider Enrollhttps://github.com/disco0/offlineinsiderenroll
然后使用管理員權限打開Windows Powershell,先輸入以下代碼,回車運行:
$path = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection"
# Telemetry level: 1 - basic, 3 - full
$value = "3"
New-ItemProperty -Path $path -Name AllowTelemetry -Value $value -Type Dword -Force
再輸入以下代碼并回車運行:
New-ItemProperty -Path $path -Name MaxTelemetryAllowed -Value $value -Type Dword -Force
Windows PowerShell運行效果如圖:
此時預覽體驗計劃可能時空白一片,先不用管它。
最后一步,根據(jù)你想進入的預覽體驗計劃通道,選擇以下對應的一段代碼,復制并粘貼到一個新建文本文檔中,并修改后綴名為“.reg”,雙擊打開,將注冊表添加到系統(tǒng)中,重啟后雖然預覽體驗計劃仍為空白,但在Windows更新里已經(jīng)可以收到對應體驗計劃的更新包。
Beta通道:
Windows Registry Editor Version 5.00
?
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\UI\Selection]
"UIContentType"="Mainline"
"UIBranch"="Beta"
"UIRing"="External"
?
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\Applicability]
"BranchName"="Beta"
"Ring"="External"
"ContentType"="Mainline"
Dev通道(不穩(wěn)定):
Windows Registry Editor Version 5.00
?
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\UI\Selection]
"UIContentType"="Mainline"
"UIBranch"="Dev"
"UIRing"="External"
?
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\Applicability]
"BranchName"="Dev"
"Ring"="External"
"ContentType"="Mainline"
Release Preview通道:
Windows Registry Editor Version 5.00
?
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\UI\Selection]
"UIContentType"="Mainline"
"UIBranch"="ReleasePreview"
"UIRing"="External"
?
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\Applicability]
"BranchName"="ReleasePreview"
"Ring"="External"
"ContentType"="Mainline"
下載更新包時,會有一個電腦檢查,檢查通過會才可以繼續(xù)下載更新包,包括CPU檢查、TPM2.0檢查等等,如果你的電腦檢查不通過,需要跳過檢查:
請參考以下鏈接:
升級win11——此版本W(wǎng)indws不支持該處理器、該電腦必須支持TPM2.0等問題解決https://blog.csdn.net/qq_34160841/article/details/119984069
如果一番折騰后還是不可以升級,建議直接去UUP dump下載ISO,用WinPE升級吧。文章來源:http://www.zghlxwxcb.cn/news/detail-443037.html
UUP dumphttps://uupdump.net/文章來源地址http://www.zghlxwxcb.cn/news/detail-443037.html
到了這里,關于Win11預覽體驗計劃顯示Your PC does not meet the minimum hardware requirements...的解決方案的文章就介紹完了。如果您還想了解更多內容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持TOY模板網(wǎng)!