我需要通过powershell向所有单级OU添加一个组“管理员”。 有快速命令吗?任务活跃角色是可能的。
谢谢。我的想法是:
$test=Get-ADOrganizationalUnit -Filter 'Name -like "*"' -searchscope onelevel | FT Name | ForEach-Object{ Add-QADPermission -"$test" -Account "administrators" -ApplyTo ChildObjects -Rights genericall}
错误消息:Add-QADPermission:帐户名称太长。