- UID
- 916136
- 最后登录
- 1970-1-1
- 阅读权限
- 30
- 精华
- 主题
- 回帖
- 0
- 积分
- 496
- PB币
-
- 威望
-
- 贡献
-
- 技术
-
- 活跃
-
|
Open PowerShell as Administator.
In the elevated PowerShell window, copy and paste the following command, all at once, and hit Enter to run it. $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
Restart the OS. |
|