π ~1 min read
Table of contents
Symptom & Impact
Backups fail with access denied or network path not found for remote target share.
Environment & Reproduction
Windows Server 2022 build 20348 using SMB backup target with stored credentials.
wbadmin get status
Test-Path \backup01wsb$
cmdkey /list
Root Cause Analysis
Expired credentials, SPN/Kerberos fallback issues, or stale SMB sessions block access.
Quick Triage
Validate SMB connectivity and authentication path.
Test-NetConnection backup01 -Port 445
Get-SmbConnection
klist
Step-by-Step Diagnosis
Check backup event log for exact target and auth failure code.
Get-WinEvent -LogName 'Microsoft-Windows-Backup' -MaxEvents 100
Get-WinEvent -LogName Security -MaxEvents 100 | Where-Object Id -in 4625,4776

Solution β Primary Fix
Refresh target credentials and clear stale SMB sessions.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
net use * /delete /y
cmdkey /delete:backup01
cmdkey /add:backup01 /user:CONTOSOsvc_backup /pass:UseSecret
wbadmin start backup -backupTarget:\backup01wsb$ -include:C: -quiet

Solution β Alternative Approaches
Use iSCSI or local disk target when SMB auth dependencies are unstable.
iscsicli ListTargets
wbadmin start backup -backupTarget:F: -include:C: -quiet
Verification & Acceptance Criteria
Backup completes and new version appears on target.
wbadmin get versions
Get-ChildItem \backup01wsb$
Rollback Plan
Revert to previous known-good target and schedule retry.
wbadmin start backup -backupTarget:\backup02wsb$ -include:C: -quiet
Prevention & Hardening
Rotate service credentials safely and test backup write access daily.
Test-Path \backup01wsb$
Get-ScheduledTask -TaskName '*Backup*' | Select TaskName,State
Related Errors & Cross-Refs
Related to SMB signing policy mismatches and clock skew causing Kerberos failure.
Related tutorial: View the step-by-step tutorial for Windows Server 2022.
View all Windows Server 2022 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn backup target best practices and SMB authentication troubleshooting.
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.