最近随着Windows11的发布,越来越多的小伙伴都想要加入Windows的预览体验计划抢先体验win11系统,但是有不少用户在登录微软的账号后,Windows预览体验计划却是空白的,这要怎么办呢?下面小编就为大家讲解一下吧!
系统之家唯一官网:www.xitongzhijia.net
操作方法:
1、首先我们在搜索框找到Windows Powershell,右键以管理员身份运行。
2、进入页面后我们输入以下代码:
<div class='codeBlock'>
- 01= &quot;HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection&quot;
- 02# Telemetry level: 1 - basic, 3 - full
- 03= &quot;3&quot;
- 04New-ItemProperty -Path -Name AllowTelemetry -Value -Type Dword -Force
- 05New-ItemProperty -Path -Name MaxTelemetryAllowed -Value -Type Dword -Force
复制代码<div class='source'>= &quot;HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection&quot;# Telemetry level: 1 - basic, 3 - full= &quot;3&quot;New-ItemProperty -Path -Name AllowTelemetry -Value -Type Dword -ForceNew-ItemProperty -Path -Name MaxTelemetryAllowed -Value -Type Dword -Force |