Active-Directory

獲取域/樹中的 AD 組路徑

  • July 7, 2016

如何從域/樹中獲取特定組的**路徑?**我沒有通過“Active Directory 使用者和組”程序獲取資訊。

我們在 company.com 域下有一個廣泛的文件夾樹。我想知道特定組“AXX G Doc Users”所在的位置。我正在嘗試使用 PowerShell Active Directory 模組,但不知道如何獲取路徑

PS C:\Users\hansi> get-adgroup "AXX G Doc Users"

DistinguishedName : CN=AXX G Doc Users,OU=Groups,OU=AXX,OU=AT,OU=Europe,OU=COMP Group,DC=comp,DC=com
GroupCategory     : Security
GroupScope        : Global
Name              : AXX G Doc Users
ObjectClass       : group
ObjectGUID        : 589de0db-105e-4cfe-a231-692573248487
SamAccountName    : AXX G Doc Users
SID               : S-1-5-21-796845957-79056718-725345543-16367

到目前為止2種方式:

  • 規範名稱:

get-adgroup -identity “你的組” -properties canonicalname | sel - 屬性規範名稱

$$ enter $$ 規範名稱

Your.Domain/ou name/ou name/你的組

  • 使用專有名稱:

$group = get-adgroup 身份“你的組”

$$ enter $$ ($group.DistinguishedName -split"," ,2)

$$ 1 $$ $$ enter $$ ou=name,ou,name,dc=your,dc=domain,dc=tld

對不起,我似乎沒有得到正確的格式,但你得到了圖片。

引用自:https://serverfault.com/questions/788418