Active directory User issue permission

Antony Maxwin 281 Reputation points
2022-10-12T10:51:53.693+00:00

HI
I have created on test user directly under active directory >users, but this user falls to some other group automatically, and even this user does not have administrator permission in workstation even this user member of administrator group.
always asking for local administrator password in all machine , how can i check whether any domain wide policy is running , because i want to know how a normal user falls under lot of security group.
screen shot attached.249714-img-20221012-wa0009.jpg

Windows for business | Windows Client for IT Pros | Directory services | Active Directory
Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

Accepted answer
  1. Gary Reynolds 9,621 Reputation points
    2022-10-15T22:35:58.233+00:00

    Hi @Antony Maxwin

    The groups displayed by the GPResult are a combination of the groups that the users is a member of and well-known SIDs added to the users access token to provide details of the users logon sessions and connection to the domain\workstation. See this link for more details on the well known SIDs https://learn.microsoft.com/en-us/windows/win32/secauthz/well-known-sids

    From the screenshot, the following are well-known SIDs were added to the user's access token to identify user's session.

    NT Authority\Interactive - you have logged on interactively
    Console Logon - you are connected to the console session
    This Organization - your user account is a member of the same domain as the workstation
    Local - user account is logged onto a physical console
    Authentication authority asserted identity, Access-denied assistance users, High mandatory level are details of the configuration of you windows session
    NT Authority\Authenticated Users - your account has been authenticated by the domain\workstation
    Everyone - all users get this SID

    Only the following groups have been assigned based on AD group membership:
    Domain Users - Assigned based on the primaryGroupID attribute of the user
    Builtin\Administrators - Assigned probably because Domain Users is a member of the local Administrators group on the workstation.
    Builtin\Users - Assigned because the Domain Users is a member of the local Users group on the workstation.

    If you want to restrict the permissions the users has on the workstation, I would check if the membership of the local administrators group is controlled by group policy. You can see if there are any settings being applied by reviewing the log created by the gpresult -z

    Gary.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Limitless Technology 44,751 Reputation points
    2022-10-14T09:32:51.157+00:00

    Hi,

    The following PowerShell will result in a report of the GPOs being applied when a user logs in:

    Get-GPResultantSetOfPolicy
    [-Computer <String>]
    [-User <String>]
    -ReportType <ReportType>
    -Path <String>
    [<CommonParameters>]

    Please refer here:

    https://learn.microsoft.com/powershell/module/grouppolicy/get-gpresultantsetofpolicy?view=windowsserver2022-ps

    ---------------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept as answer--

    0 comments No comments

Your answer

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