AD security Group

Balayuvaraj M 51 Reputation points
2023-04-07T09:17:21.94+00:00

Hi, I have list of security group in my domain. I need to find out in which server those security group is added. Let me know how to find.

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,635 questions
Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,244 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Eqbal Hussain 1 Reputation point
    2023-04-07T09:55:02.6266667+00:00

    You can export the security group members using PowerShell in a csv. Here is example

    Get-ADGroupMember -Identity Administrators | Select-Object name, objectClass,distinguishedName | Export-CSV -Path “adgroupmembers.csv”

    After that open CSV file in excel and use filter for computer in "objectClass" column

    0 comments No comments