How to solve the problem that Windows11bata version cannot get the latest update?
2022/8/3 18:00:51
Search for "PowerShell" in the search box, right-click "Run as administrator", and enter the following command and press Enter to run: $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 And then restart the system.