Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
The BranchReadinessLevel setting in Windows is crucial for IT administrators who manage when and how Windows updates are deployed across an organization. This setting determines the readiness level of updates that your devices will receive, allowing you to control whether they get the latest features immediately or after they have been more widely tested. Adjusting the BranchReadinessLevel can help ensure system stability and compatibility with enterprise applications.
In Windows, BranchReadinessLevel can be configured using Group Policy, the Windows Registry, or via PowerShell. This article will guide you through each method, providing step-by-step instructions and examples.
Examples:
Win + R
, type gpedit.msc
, and press Enter to open the Group Policy Editor.Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update -> Windows Update for Business
.Select when Preview Builds and Feature Updates are received
policy.Enabled
.Options
, choose between Semi-Annual Channel (Targeted)
or Semi-Annual Channel
and specify the number of days to defer updates if needed.Apply
and OK
.Win + R
, type regedit
, and press Enter to open the Registry Editor.HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
.WindowsUpdate
key does not exist, right-click on Microsoft\Windows
, select New -> Key
, and name it WindowsUpdate
.WindowsUpdate
, select New -> DWORD (32-bit) Value
, and name it BranchReadinessLevel
.BranchReadinessLevel
and set its value to:
16
for Semi-Annual Channel (Targeted)8
for Semi-Annual ChannelOK
and close the Registry Editor.Open PowerShell as an administrator.
Run the following command to set the BranchReadinessLevel to Semi-Annual Channel (Targeted):
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "BranchReadinessLevel" -Value 16
Or to set it to Semi-Annual Channel:
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "BranchReadinessLevel" -Value 8
Verify the setting by running:
Get-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "BranchReadinessLevel"
By configuring the BranchReadinessLevel, you can better manage the deployment of Windows updates, ensuring that your systems remain stable and compatible with your organization's needs.