17 使用Active Directory用户和计算机很容易做到这一点。 单击查看>高级功能 向下钻取您想要了解的用户,然后打开“属性”。 单击属性编辑器选项卡 向下滚动到“ ObjectSID”属性。 利润。 — xmaveric source
1 我将对Microsoft管理控制台使用ADSI Edit管理单元。请参阅在WIN-7上使用ADSI Edit。 GUID在称为objectguid的Active Directory属性中。 — 香农·瓦格纳(Shannon Wagner) source
1 c:\ windows \ system32 \ LDP.exe 连接->绑定->确定 浏览->搜索 基本DN :(这取决于环境) Fitler:(samAccountName = yourAccountName) 范围:子树(这会嵌套搜索) 属性:添加“ objectGUID” ... 那应该做。 — 茨沃特斯 source
1 在PowerShell中,键入以下命令: Get-ADUser -Filter * -Properties SID | where {$_.sid -eq 'number here'} Get-ADComputer -Filter * -Properties SID | where {$_.sid -eq 'number here'} — 克里斯·C source