π ~1 min read
Table of contents
Symptom & Impact
Remote scripts can access first hop host but fail when contacting downstream file share, SQL, or API endpoint.
Environment & Reproduction
Reproduced when using default Kerberos auth without constrained delegation or CredSSP.
Enter-PSSession -ComputerName
Invoke-Command -ComputerName { Test-Path \srv2share }
Root Cause Analysis
Kerberos ticket is not delegated to second hop by default, causing access denied on downstream resource.
Quick Triage
Determine whether workflow requires double-hop and inspect SPN/delegation settings.
Step-by-Step Diagnosis
Audit constrained delegation and service principal mappings.
setspn -Q HTTP/
Get-ADComputer -Properties msDS-AllowedToDelegateTo

Solution – Primary Fix
Implement Kerberos constrained delegation for required downstream services.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
# Configure delegation in ADUC/PowerShell for srv1 account
klist purge

Solution – Alternative Approaches
Use CredSSP only for tightly controlled admin endpoints with compensating controls.
Verification & Acceptance Criteria
Second-hop access succeeds for approved targets without broad credential exposure.
Rollback Plan
Remove delegation entries and revert remoting to single-hop model if risk posture changes.
Prevention & Hardening
Document remoting trust boundaries and limit delegation scope to explicit services only.
Related Errors & Cross-Refs
Often co-occurs with SPN duplication and DNS alias canonicalization issues.
View all Windows Server 2022 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: PowerShell remoting authentication, constrained delegation, and CredSSP security guidance.
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.