有没有办法将Active Directory数据导出到数据库或电子表格中?


0

我最终需要将活动目录用户信息转换为XML以便在另一个系统中使用,但是使用数据库(例如SQL Server或MSAccess)或电子表格甚至.csv文件对我来说都适用。


1
您可以使用csvdeldifde将Active Directory用户信息导出到文件中
user2196728

Answers:


0

您可以使用PowerShell将所有内容导出为XML(或CSV,但它是有限的)。它应该是这样的:Get-ADObject -LDAPFilter“(&(objectCategory = person)(objectClass = user))” - SearchBase“DC = Contoso,DC = com”-SearchScope Subtree -Properties * | Export-Clixml -Path D:\ Test.xml -NoClobber

但要小心,它可能需要你DC的大量资源。

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.