如何使用 powershell 在 AD 中创建包含 OU 列表的表

发布于 2025-01-19 04:39:27 字数 695 浏览 0 评论 0原文

我在Active Directory中有许多子文件夹,我想计算那里的用户数量。我找到了与PowerShell和Get Aduser命令一起使用的方法,但是我认为必须有一种方法来优化与我想要的所有子文件夹一起构建表格。

通常,以下脚本对我有用,但是我不知道我是否可以递归地浏览所有子文件夹,最后创建一个CSV,每个子文件夹的用户数量。

echo "ACC - total:" (Get-ADUser -Filter * -SearchBase 'OU=Users,OU=ACC,OU=Clients,DC=SSICloud,DC=local' ).count

 echo "All Car - total:" (Get-ADUser -Filter * -SearchBase 'OU=Users,OU=All Car,OU=Clients,DC=SSICloud,DC=local' ).count

结果:

ACC - Total:
10

All Car - Total: 
11

谢谢

I have in my active directory a number of subfolders and I want to count the number of users there. I found a way to do with powershell and the Get ADUser command, however I think there must be a way to optimize this to build a table with all the subfolders I want.

enter image description here

normally the following script works for me, but I don't know if I can recursively go through all the subfolders and finally create a csv with the number of users per subfolder.

echo "ACC - total:" (Get-ADUser -Filter * -SearchBase 'OU=Users,OU=ACC,OU=Clients,DC=SSICloud,DC=local' ).count

 echo "All Car - total:" (Get-ADUser -Filter * -SearchBase 'OU=Users,OU=All Car,OU=Clients,DC=SSICloud,DC=local' ).count

outcome:

ACC - Total:
10

All Car - Total: 
11

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼中杀气 2025-01-26 04:39:28

可以通过域中的所有OUS递归搜索,然后您可以将OU的dickectundedname作为参数作为-Searchbase get-aduser < /a>获取您的报告:

Get-ADOrganizationalUnit -Filter * -Properties CanonicalName | ForEach-Object {
    [pscustomobject]@{
        OUCanonicalName = $_.CanonicalName
        TotalUserCount  = @(Get-ADUser -Filter * -SearchBase $_.DistinguishedName).Count
    }
} | Export-Csv .... -NoTypeInformation

Get-ADOrganizationalUnit can search recursively through all OUs in your Domain, you can then pass the DistinguishedName of the OU as argument to the -SearchBase parameter of Get-ADUser to get your report:

Get-ADOrganizationalUnit -Filter * -Properties CanonicalName | ForEach-Object {
    [pscustomobject]@{
        OUCanonicalName = $_.CanonicalName
        TotalUserCount  = @(Get-ADUser -Filter * -SearchBase $_.DistinguishedName).Count
    }
} | Export-Csv .... -NoTypeInformation
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文