You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I understand correctly, the ListTrustedToAuthenticateForDelegation (and NumberTrustedToAuthenticateForDelegation) is taken from HealthCheckAnalyser.cs#L772:
if ((x.UserAccountControl & 0x80000) != 0)
{
data.AddDetail("TrustedToAuthenticateForDelegation", GetAccountDetail(x));
}
If I understand correctly, the ListTrustedToAuthenticateForDelegation (and NumberTrustedToAuthenticateForDelegation) is taken from HealthCheckAnalyser.cs#L772:
In our report, we have :
But when I check with poweshell:
In microsoft learn, it seems that
0x80000
is used forTRUSTED_FOR_DELEGATION
andTRUSTED_TO_AUTH_FOR_DELEGATION
should be0x1000000
.What did I miss?
The text was updated successfully, but these errors were encountered: