"Access Denied" when clicking on Updates in the portal WAC

GabeCz 26 Reputation points
2025-12-06T07:28:54.0566667+00:00

I cannot run WAC/updates on the portal i get
"Couldn't query readiness for Cluster-Aware Updates

Error: RemoteException: Could not open cluster "MYCLUSTER.domain.local": (Win32Exception) Access is denied"

Copilot keeps on saying it is becuase multi-hop is disabled which indeed is but after setting everything it suggests i still get the same error when running

Invoke-Command -ComputerName NODENAME -Credential domain\lcmuserdev -Authentication Credssp -ScriptBlock { hostname }

i get

[NODENAME] Connecting to remote server NODENAME failed with the following error message : The WinRM client

cannot process the request. A computer policy does not allow the delegation of the user credentials to the target

computer. Use gpedit.msc and look at the following policy: Computer Configuration -> Administrative Templates ->

System -> Credentials Delegation -> Allow Delegating Fresh Credentials. Verify that it is enabled and configured with

an SPN appropriate for the target computer. For example, for a target computer name "myserver.domain.com", the SPN can

be one of the following: WSMAN/myserver.domain.com or WSMAN/*.domain.com. For more information, see the about_Remote_Troubleshooting Help topic.

on all nodes i did set the required settings in the gpo. gpresult -h result.htm proves it is.

i am running out of ideas..

i do not have a group policy that could override this.

Azure Local
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Q&A Assist
    2025-12-06T07:29:04.5633333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    The "Access Denied" error you are encountering when trying to run Cluster-Aware Updates (CAU) in Windows Admin Center (WAC) is likely related to the configuration of credentials delegation and the settings in Group Policy. Here are some steps to troubleshoot and resolve the issue:

    1. Check Credential Delegation Settings: Ensure that the Group Policy settings for credential delegation are correctly configured. You need to enable the policy at Computer Configuration -> Administrative Templates -> System -> Credentials Delegation -> Allow Delegating Fresh Credentials. Make sure that the SPN is set correctly for the target computer, such as WSMAN/myserver.domain.com or WSMAN/*.domain.com.
    2. Verify Group Policy Application: Use gpresult /h result.htm to generate a report and confirm that the policies are being applied as expected. Look for any conflicting policies that might override your settings.
    3. Enable CredSSP: Since you are using CredSSP for authentication, ensure that it is enabled on both the client and the server. You can run the following commands:
         Enable-WSManCredSSP -Role Client -DelegateComputer "*"
         Enable-WSManCredSSP -Role Server
      
    4. Test Remote Connectivity: After making changes, test the remote connectivity again using the Invoke-Command cmdlet. If you still encounter issues, check the WinRM configuration and ensure that it is set up correctly on both the client and the target nodes.
    5. Firewall and Network Configuration: Ensure that there are no firewall rules or network configurations that might be blocking the WinRM traffic.

    If you have followed these steps and the issue persists, consider reviewing the logs for any additional error messages that might provide more context about the failure.


    References:

    0 comments No comments

  2. GabeCz 26 Reputation points
    2025-12-06T07:52:59.7033333+00:00

    registry keys set to wsman/*.mydomain.local on both AllowFreshCredentials and AllowFreshCredentialsWhenNTLMOnly, also enabled and set these in gpedit.msc

    on all 4 nodes.

    still getting the same error.

    connecting to the WAC -> update service when clicking on the individual nodes instead of the cluster works just fine.

    that tells me that indeed the disabled multi-hop is causing the issue.

    which i set up as requested, but still not working.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.