最近随着Windows11系统在预览通道的推出,不少用户都想要加入到预览体验计划升级Windows11操作系统。但是不少用户发现自己打开Win10的Windows预览体验计划一片空白,这要怎么办呢?下面小编就带着大家一起看看吧!
系统之家唯一官网:
操作方法:
1、首先我们在搜索框找到Windows Powershell,右键以管理员身份运行。
2、进入页面后我们输入以下代码:
01= "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesDataCollection"
02# Telemetry level: 1 - basic, 3 - full
03= "3"
04New-ItemProperty -Path -Name AllowTelemetry -Value -Type Dword -Force
05New-ItemProperty -Path -Name MaxTelemetryAllowed -Value -Type Dword -Force
复制代码= "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesDataCollection" # Telemetry level: 1 - basic, 3 - full = "3" New-ItemProperty -Path -Name AllowTelemetry -Value -Type Dword -Force New-ItemProperty -Path -Name MaxTelemetryAllowed -Value -Type Dword -Force