參考下面這個鏈接
Fix Blank or Empty Insider Program Settings Page in Windows 10 (msftnext.com)
方法是打開系統 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 -ForceNew-ItemProperty -Path $path -Name MaxTelemetryAllowed -Value $value -Type Dword -Force


