在Active Directory管理单元中,如何找到用户的GUID?


Answers:



17

使用Active Directory用户和计算机很容易做到这一点。

单击查看>高级功能

向下钻取您想要了解的用户,然后打开“属性”。

单击属性编辑器选项卡

向下滚动到“ ObjectSID”属性。

利润。



1

c:\ windows \ system32 \ LDP.exe

连接->绑定->确定

浏览->搜索

基本DN :(这取决于环境)

Fitler:(samAccountName = yourAccountName)

范围:子树(这会嵌套搜索)

属性:添加“ objectGUID”

...

那应该做。


1

在PowerShell中,键入以下命令:

Get-ADUser -Filter * -Properties SID | where {$_.sid -eq 'number here'}

Get-ADComputer -Filter * -Properties SID | where {$_.sid -eq 'number here'}

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.