π ~2 min read
Table of contents
Symptom & Impact
Windows Server 2025 file shares show periodic latency spikes and throughput drops for user and application traffic. Logon scripts, profile loads, and backup jobs miss timing windows. Business operations experience intermittent but recurring service degradation.
Environment & Reproduction
Common after enabling strict signing/encryption globally without capacity planning, NIC offload mismatch, or storage contention. Reproduce with concurrent large and small file operations during peak hours. SMB session response times increase sharply.
Get-SmbServerConfiguration
Get-SmbSession | Measure-Object
Get-Counter 'SMB Server(*)Avg. sec/Read'
Root Cause Analysis
Main causes include crypto overhead from policy changes, queue contention on storage, and outdated NIC driver/offload settings. SMB performance on Windows Server 2025 depends on balanced network and disk paths. A bottleneck in either path manifests as share slowness.
Quick Triage
Measure SMB counters, storage latency, and CPU usage during complaint window. Confirm whether slowdown is global or isolated to specific shares. Check if antivirus scanning or backup snapshot overlap is present.
Get-Counter 'PhysicalDisk(_Total)Avg. Disk sec/Transfer'
Get-Counter 'Processor(_Total)% Processor Time'
Get-WinEvent -LogName 'Microsoft-Windows-SMBServer/Operational' -MaxEvents 40
Step-by-Step Diagnosis
Correlate SMB counters with storage metrics and network retransmissions. Validate SMB settings against security baseline and expected workload profile. Compare with historical baseline before recent policy/driver changes.
Get-SmbServerConfiguration | fl EnableSMB1Protocol,EnableSecuritySignature,EncryptData
Get-NetAdapterAdvancedProperty -Name '*'
Get-NetTCPConnection -State Established | Measure-Object
Solution β Primary Fix
Apply balanced SMB configuration, update NIC drivers/firmware, and reduce avoidable scan overhead on data paths. Keep required security controls while tuning for workload profile. Validate improvements under representative load.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-SmbServerConfiguration -EnableSMB1Protocol $false -Force
Set-SmbServerConfiguration -EncryptData $false -Force
# keep encryption enabled only where mandated per share
Get-SmbShare | Select Name,EncryptData
Solution β Alternative Approaches
Use SMB Multichannel and RSS tuning, or move hot datasets to lower-latency storage tiers. If encryption is mandatory, scale CPU capacity or distribute workload across additional file servers. Use QoS to protect critical traffic.
Verification & Acceptance Criteria
Recovery is accepted when SMB read/write latency counters return to baseline and user-visible operations complete within SLA during peak period. No recurring SMB server warning bursts should appear.
Get-Counter 'SMB Server(*)Avg. sec/Read','SMB Server(*)Avg. sec/Write'
Get-WinEvent -LogName 'Microsoft-Windows-SMBServer/Operational' -MaxEvents 20
Rollback Plan
If tuning changes cause security or compatibility issues, revert SMB settings to policy baseline and re-enable prior per-share requirements. Roll back NIC driver only if regression is confirmed. Keep before/after perf snapshots for audit.
Prevention & Hardening
Implement performance baselines for SMB, storage, and CPU before large security or driver changes. Apply staged rollout for SMB policy shifts and maintain share classification by sensitivity and performance tier. Monitor continuously.


Related Errors & Cross-Refs
May coincide with storage queue saturation, backup windows, and antivirus full scans. Branch cache and profile load complaints can be downstream symptoms. Prioritize bottleneck isolation before broad configuration changes.
Related tutorial: View the step-by-step tutorial for Windows Server 2025.
View all Windows Server 2025 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft SMB performance and security documentation should guide final tuning choices. Internal data classification and security standards determine where encryption/signing is mandatory versus optional.
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.