Hello Team,
We are experiencing an issue establishing a remote PowerShell session via WinRM between Windows Server 2025 systems. After further investigation, we have determined that the issue is not limited to local Administrator accounts and appears to be related to recent security updates.
Environment
Source Server: SERVER-A Target Server: SERVER-B Target OS: Windows Server 2025
Updates Installed on Affected Systems:
Authentication Methods Tested:
- Local Administrator accounts
- Domain accounts
Connection Method:
- PowerShell Remoting (Enter-PSSession)
- WinRM over HTTP (port 5985)
Issue
We are attempting to establish a remote PowerShell session using:
PowerShell
Enter-PSSession -ComputerName SERVER-B -Credential <Credential>
The connection consistently fails with:
Access is denied
This occurs even though:
- Credentials are correct
- Authentication reaches the target system
Expanded Testing & Key Finding
We performed cross-validation testing across patched and unpatched Windows Server 2025 systems and observed the following behaviour:

Key Observation
- The issue occurs only when both source and target systems are patched
- Communication works in all mixed patch scenarios
- This indicates the issue is patch-level dependent, not limited to account configuration or UAC restrictions
Troubleshooting Performed
We have validated the following:
- WinRM service is configured and running on both systems
- TrustedHosts is correctly configured
- WinRM listeners are present and reachable
- Port 5985 connectivity verified
- Firewall configuration verified
- Network profile set correctly (Private)
- DNS resolution and connectivity verified
- WinRM reset and reconfiguration completed
Authentication & Access Validation:
- Tested multiple credential formats:
- Administrator
- .\Administrator
- SERVER-B\Administrator
- Tested both:
- Local administrator accounts
- Domain accounts
- Verified:
- LocalAccountTokenFilterPolicy = 1
- Membership in Administrators and Remote Management Users
Observed Behaviour
- Authentication successfully reaches the target system
- Security Event Logs show:
4776 → 4672 → 4625 → 4634
This indicates:
- Credential validation succeeds
- Administrative privileges are assigned
- Logon ultimately fails afterward
The failure occurs after authentication, during session establishment
WinRM / WSMan Behaviour
- No corresponding WinRM Operational logs for failed attempts
- wsmprovhost.exe is not launched
- Remote shell/session initialization does not begin
This suggests failure occurs before WinRM session creation completes
Additional WSMan Anomaly
Running:
PowerShell
winrm quickconfig
on affected systems returns:
WSManFault
Error number: 0x80070057
The parameter is incorrect
This behavior is unexpected and may indicate an issue with:
- WSMan configuration
- Plugin/provider initialization
- Changes introduced by recent updates
Assessment
Based on the above:
- This does not behave like a standard UAC remote restriction issue
- The issue is not limited to local Administrator accounts
- Authentication succeeds, but session creation fails early
- Behavior is strictly dependent on both systems having:
This suggests a potential:
- WinRM / WSMan compatibility issue
- Security enforcement change
- Or regression introduced in recent updates
Questions
- Are there any known issues or regressions in:
- KB5073379
- KB5077793 affecting WinRM / WSMan communication?
- Have there been changes that could:
- Prevent remote session initialization
- Block wsmprovhost.exe from launching
- Cause failures without WinRM Operational logs
- Is this behavior expected, or should it be treated as a potential product issue?
- Are there any additional diagnostics available for tracing failures occurring before WinRM session initialization?
Conclusion
Based on all findings, the issue appears to be patch-level dependent and not explained by standard configuration, authentication, or UAC restrictions.
We would appreciate confirmation on whether this is expected behavior or if this should be escalated as a potential regression.