Affected versions: Windows Server 2022

📖 ~1 min read

Table of contents
  1. Symptom & Impact
  2. Quick Checks
  3. Deep Diagnosis
  4. Primary Fix
  5. Verification
  6. Prevention & Hardening

Symptom & Impact

Clients frequently lose connectivity or receive APIPA addresses because DHCP pools are depleted. Endpoint onboarding fails during peak hours and VoIP or kiosk devices reconnect repeatedly. Service desk volume rises due to intermittent network access.

Quick Checks

Measure available leases, identify stale records, and confirm failover partner synchronization status.

Get-DhcpServerv4ScopeStatistics -ComputerName dhcp01
Get-DhcpServerv4Failover
Get-DhcpServerv4Lease -ScopeId 10.10.20.0 | Measure-Object

Deep Diagnosis

Review NACK bursts, duplicate reservations, and lease duration mismatch versus client churn patterns.

Get-WinEvent -LogName 'Microsoft-Windows-DHCP-Server/Operational' -MaxEvents 200 | Select TimeCreated,Id,Message
Get-DhcpServerv4Reservation -ScopeId 10.10.20.0
Get-DhcpServerv4Policy -ScopeId 10.10.20.0

Primary Fix

Expand scope ranges, reduce lease duration for high-churn VLANs, and reconcile stale leases safely.

Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.

Set-DhcpServerv4Scope -ScopeId 10.10.20.0 -LeaseDuration 1.00:00:00
Add-DhcpServerv4ExclusionRange -ScopeId 10.10.20.0 -StartRange 10.10.20.1 -EndRange 10.10.20.30
Remove-DhcpServerv4Lease -ScopeId 10.10.20.0 -IPAddress 10.10.20.150 -Force

Verification

Free addresses should remain above threshold and no repeated exhaustion events should appear during business peaks.

Get-DhcpServerv4ScopeStatistics -ComputerName dhcp01
Get-WinEvent -LogName 'Microsoft-Windows-DHCP-Server/Operational' -MaxEvents 50 | Select Id,Message

Prevention & Hardening

Create utilization alerts and capacity planning rules for each segment based on device growth and temporary guest traffic.

Get-DhcpServerInDC
Export-DhcpServer -ComputerName dhcp01 -File C:Backupdhcp.xml -Leases
Get-DhcpServerv4Scope | Select ScopeId,Name,State

Illustrative mockup for windows-server-2022 — terminal_or_powershell
Diagnostics commands in PowerShell — Illustrative mockup — Progressive Robot
Illustrative mockup for windows-server-2022 — event_or_log_viewer
Event log verification for Windows Server 2022 — Illustrative mockup — Progressive Robot

Need Expert Help?

If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.