Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade

How to Configure Policy-Driven Update Source for Quality Updates in Windows

In the Windows environment, managing updates is crucial for maintaining system security and performance. One of the methods to control how updates are sourced and applied is through policy-driven configurations. However, the specific function "SetPolicyDrivenUpdateSourceForQualityUpdates" does not directly apply to Windows. Instead, Windows provides alternative methods to manage update sources and policies, primarily through Group Policy and the Windows Update settings.

Configuring update policies allows administrators to specify where updates should be sourced from, such as Windows Update, WSUS (Windows Server Update Services), or other update management solutions. This ensures that systems receive the necessary quality updates in a controlled and predictable manner.

Examples:

  1. Using Group Policy to Configure Update Source:

    • Open the Group Policy Management Console (GPMC) by typing gpmc.msc in the Run dialog (Win + R).
    • Navigate to Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update.
    • Double-click on "Specify Intranet Microsoft update service location".
    • Enable the policy and set the intranet update service URL (e.g., http://your-wsus-server).
    • Click OK to apply the settings.
  2. Configuring Windows Update Settings via Registry:

    • Open the Registry Editor by typing regedit in the Run dialog (Win + R).
    • Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate.
    • Create a new DWORD (32-bit) Value named WUServer and set its value to the URL of your WSUS server.
    • Create another DWORD (32-bit) Value named WUStatusServer and set its value to the same URL.
    • Restart the Windows Update service to apply the changes. This can be done via CMD:
      net stop wuauserv
      net start wuauserv
  3. Using PowerShell to Configure Windows Update Source:

    • Open PowerShell with administrative privileges.
    • Use the Set-ItemProperty cmdlet to configure 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'
    • Restart the Windows Update service:
      Restart-Service -Name wuauserv

These methods provide administrators with the flexibility to manage and control the source of quality updates, ensuring that systems remain secure and up-to-date with the latest patches and improvements.

To share Download PDF

Gostou do artigo? Deixe sua avaliação!
Sua opinião é muito importante para nós. Clique em um dos botões abaixo para nos dizer o que achou deste conteúdo.