ACTIVE DIRECTORYUpdated Jun 25, 2026 · 5 min read
Connect a workgroup server to WSUS
Configure required registry policy, choose notification behavior, and verify client reporting.
Recommended approach
- Set
WUServerandWUStatusServerto the approved endpoint. - Enable
UseWUServerunder the AU subkey and selectAUOptions. - Restart Windows Update, scan, and verify the device in WSUS.
Command reference
$wu = 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate'
New-Item $wu -Force | Out-Null
New-ItemProperty $wu -Name WUServer -Value 'http://wsus:8530' -Force
New-ItemProperty $wu -Name WUStatusServer -Value 'http://wsus:8530' -Force
$au = Join-Path $wu 'AU'
New-Item $au -Force | Out-Null
New-ItemProperty $au -Name UseWUServer -Value 1 -PropertyType DWord -Force
New-ItemProperty $au -Name AUOptions -Value 3 -PropertyType DWord -Force
Restart-Service wuauserv
[!NOTE]
AUOptions3 means notify before download. Use 4 only when automatic download and scheduled installation is intended.
Validation
Get-WindowsUpdateLog
(New-Object -ComObject Microsoft.Update.AutoUpdate).DetectNow()