Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
In the Windows operating system, managing updates is crucial to ensure system stability, security, and performance. One of the features that administrators can leverage is the ability to defer feature updates. The "DeferFeatureUpdatesPeriodInDays" setting allows administrators to delay the installation of new feature updates for a specified number of days. This can be particularly useful in enterprise environments where immediate updates might disrupt critical workflows or where thorough testing of updates is required before deployment.
This article will guide you through the process of configuring the "DeferFeatureUpdatesPeriodInDays" setting using Group Policy and the Windows Registry. By understanding and applying this setting, you can better control the update process and maintain a stable operating environment.
Examples:
Using Group Policy:
Win + R
to open the Run dialog box.gpedit.msc
and press Enter to open the Local Group Policy Editor.Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update -> Windows Update for Business
.Select when Preview Builds and Feature Updates are received
.Enabled
.Defer feature updates for this many days
field.Apply
and then OK
.Using the Windows Registry:
Win + R
to open the Run dialog box.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
, select New -> Key
, and name it WindowsUpdate
.WindowsUpdate
, select New -> DWORD (32-bit) Value
, and name it DeferFeatureUpdatesPeriodInDays
.DeferFeatureUpdatesPeriodInDays
and set the value to the number of days you want to defer updates.OK
and close the Registry Editor.Using PowerShell:
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "DeferFeatureUpdatesPeriodInDays" -Value 30 -PropertyType DWord -Force
Replace 30
with the number of days you want to defer the updates.