将用户特定数据从 Excel 工作表导入到 Active Directory/Exchange
我想将 Excel 工作表中的数据(姓名、部门、电话等)自动分配给可用的 AD 用户。
哪种编程/脚本语言或 LDAP-API 适合解决此问题?有人有一些例子吗?
I would like to allocate data from a Excel-sheet (name, department, phone etc.) to available AD-users automatically.
Which programming-/scripting-language or LDAP-API is practical for this problem? Does anyone have some examples?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Powershell 或 VB。有从 Technet Scirpt Center 存储库中发布的 .csv 数据添加/更新用户的示例。
http://gallery.technet.microsoft.com/ScriptCenter/
Powershell or VB. There are examples of adding / updating users from .csv data posted in the Technet Scirpt Center Repository.
http://gallery.technet.microsoft.com/ScriptCenter/
如果您可以轻松使用它,请使用 PowerShell。
将 Quest AD Cmdlet 与 Import-CSV Cmdlet 一起使用。唯一的技巧是必须将 Excel 文件另存为 csv 文件。如果这不是一个选项,您可以使用 COM 来自动化 Excel。
If its readily avaialble to you, go with PowerShell.
Use the Quest AD Cmdlets along with the Import-CSV Cmdlet. The only trick would be having to save your Excel file as a csv file. If that is not an option, you can use COM to automate excel.