PowerShell查询各OU下的用户账户

时间:2018-05-30 15:41:07   收藏:0   阅读:1449
#定义顶级OU
$OUs = Get-ADOrganizationalUnit -SearchBase "OU=XXX,DC=Contoso,DC=com" -Filter *
#定义数组用于存放数据
$UserList = @()

#遍历OU
Foreach ($OU in $OUs)
{

#查询当前OU的所有用户
$Users = Get-ADUser -SearchBase $OU -Filter *  -SearchScope 1

#遍历用户

Foreach ($User in $Users)
{

#将用户名和OU信息添加到数组

$UserList += [PSCustomObject]@{
OU = $OU.Name
Name = $User.Name
}
}
}

#输出信息
$UserList

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!