adsi与 adfind工具

简介:
Do you need to quickly find the GUID id from the Active Directory without have to write some complex code just to get the GUID id.
Solution 1: You can use Windows Server 2003 ADSI (Active Directiory Services Interface) Edit tool to get the GUID or SID value.
ADSI Edit (adsidedit) is one of Windows Server 2003's support tools. So if you don't have you can install it from the CD.
Solution 2: You can use Adfind to get this GUID or SID value
Get GUID value:
1. First download the Adfind tool.
2. In command prompt execute adfind -b dc=yourdomain,dc=yourdomain,dc=org -f (sAMAccountName=Cymbaline) objectGUID
EG. C:\Program Files\adfind>adfind -b dc=yourdomain,dc=yourdomain,dc=org -f (sAMAccountName=Cymbaline) objectGUID
Get SID: value:
C:\Program Files\adfind>adfind -b dc=yourdomain,dc=yourdomain,dc=org -f (sAMAccountName=Cymbaline) objectGUID
You can do many more with this tool, look in the help to see what else you can do.


本文转自9pc9com博客,原文链接:     http://blog.51cto.com/215363/800490    如需转载请自行联系原作者
相关文章
|
6月前
|
网络协议 测试技术 Windows
Switchhosts工具的使用
Switchhosts工具的使用
143 0
|
Web App开发 Windows
Windows 技术篇-本地组策略编辑器添加模板方法,设置chrome浏览器本地组策略演示
Windows 技术篇-本地组策略编辑器添加模板方法,设置chrome浏览器本地组策略演示
657 0
Windows 技术篇-本地组策略编辑器添加模板方法,设置chrome浏览器本地组策略演示
|
Windows
Windows 技术篇-windows家庭版win+R运行搜不到gpedit.msc组策略编辑器解决方法,windows安装组策略编辑器方法
Windows 技术篇-windows家庭版win+R运行搜不到gpedit.msc组策略编辑器解决方法,windows安装组策略编辑器方法
390 0
Windows 技术篇-windows家庭版win+R运行搜不到gpedit.msc组策略编辑器解决方法,windows安装组策略编辑器方法
|
Windows
windows下的vs2017新建win32控制台应用程序项目如何调出程序向导选项?
windows下的vs2017新建win32控制台应用程序项目如何调出程序向导选项? 如下图所示: 我的GitHub地址:https://github.com/heizemingjun 我的博客园地址:http://www.
1388 0
|
Android开发
设置Eclipse RCP程序的外观和首选项
RCP应用程序的缺省外观是一个空白窗口,一般我们要通过一个WorkbenchAdvisor类对界面进行定制。 WorkbenchAdvisor有很多回调方法,可以在preWindowOpen()方法里设置菜单、工具条、状态栏、进度栏、透视图切换工具是否可 见,在fillActionBars()方法里添加菜单和工具条项,在getInitialWindowPerspectiveId()方法里指定首选的 透视图。
1670 0
|
关系型数据库 MySQL 数据库