Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
In today's fast-paced IT environments, ensuring that your Windows systems are up-to-date with the latest quality updates is crucial for maintaining security and stability. The SetPolicyDrivenUpdateSourceForQualityUpdates
is a policy setting that allows administrators to specify the source from which Windows should obtain quality updates. This can be particularly useful in enterprise environments where updates need to be managed and controlled centrally.
Understanding how to configure this policy can help you streamline your update management processes, reduce bandwidth usage, and ensure that all systems comply with organizational policies. This article will guide you through the steps to configure SetPolicyDrivenUpdateSourceForQualityUpdates
using both Group Policy and the Windows Registry.
Examples:
Open Group Policy Management Console (GPMC):
Win + R
, type gpmc.msc
, and press Enter.Navigate to the Policy:
Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update
.Configure the Policy:
Apply and Close:
Open Registry Editor:
Win + R
, type regedit
, and press Enter.Navigate to the Key:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
.Create or Modify Values:
WUServer
- Set this to the URL of your update server.WUStatusServer
- Set this to the URL of your status server.Example Registry Script:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"WUServer"="http://your-wsus-server"
"WUStatusServer"="http://your-wsus-server"
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"UseWUServer"=dword:00000001
Apply Changes:
.reg
file and double-click it to apply the changes to the registry.Open PowerShell as Administrator:
Set the Update Source:
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "WUServer" -Value "http://your-wsus-server"
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" -Name "WUStatusServer" -Value "http://your-wsus-server"
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value 1
Verify the Changes:
Get-ItemProperty
cmdlet:
Get-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate"
By following these steps, you can effectively configure the SetPolicyDrivenUpdateSourceForQualityUpdates
policy to ensure that your Windows systems receive quality updates from your specified source, thereby maintaining control over the update process within your organization.