π ~1 min read
Table of contents
Symptom & Impact
Critical hostnames disappear from DNS, causing intermittent service resolution failures and failed application dependencies.
Environment & Reproduction
Occurs when scavenging is enabled globally and aging is accidentally enabled on static-record zones.
Get-DnsServerScavenging
Get-DnsServerZoneAging -Name
Root Cause Analysis
Static records received stale timestamps or zone aging intervals are too aggressive for update cadence.
Quick Triage
Confirm missing records, zone aging status, and most recent scavenging run.
Get-DnsServerResourceRecord -ZoneName -Name
Get-EventLog -LogName DNS Server -Newest 100
Step-by-Step Diagnosis
Review record timestamps and compare no-refresh/refresh windows to actual client update cycles.
Get-DnsServerResourceRecord -ZoneName | Select HostName,Timestamp,RecordType
Get-DnsServerZoneAging -Name

Solution – Primary Fix
Disable aging for static-sensitive zones and recreate critical records with protected settings.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-DnsServerZoneAging -Name -Aging $false
Add-DnsServerResourceRecordA -ZoneName -Name -IPv4Address

Solution – Alternative Approaches
Keep aging enabled but tune intervals and reserve static records in dedicated non-aging subzone.
Set-DnsServerZoneAging -Name -Aging $true -NoRefreshInterval 7.00:00:00 -RefreshInterval 7.00:00:00
Verification & Acceptance Criteria
No further unintended deletions across two scavenging cycles; monitoring confirms stable name resolution.
Resolve-DnsName
Get-DnsServerScavenging
Rollback Plan
Restore previous zone aging policy and import DNS records from backup export if required.
Import-DnsServerZone -Name -FileName
Prevention & Hardening
Separate dynamic and static records by zone design and require change approval for scavenging policy edits.
Related Errors & Cross-Refs
Often accompanied by DHCP update conflicts and stale PTR record accumulation.
View all Windows Server 2022 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: DNS aging/scavenging best practices and enterprise zone hygiene for AD-integrated DNS.
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.