admin管理员组

文章数量:1350912

Situation: There are two domains, DomainA and DomainB. DomainA and DomainB trust each other (two way trust). GroupA is in DomainA UserB is in DomainB

I want to add UserB to GroupA by PowerShell command.

I tried below command, but error has occurred. Why this error occur? And please tell me how to fix it.

Command: Get-ADGroupMember -identity “GroupA” -Members “[email protected]” -Server “[email protected]”

Error:

PS> Add-ADGroupMember -Identity GroupB -Members [email protected] -Server “[email protected]”
Add-ADGroupMember : Cannot find an object with identity:
 '[email protected]' under: 'DC=SUB,DC=DomainA,DC=com'. At line:1 char:1
    
    + Add-ADGroupMember -Identity GroupA -Members [email protected] - ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (DomainA\User1:ADPrincipal) [Add-ADGroupMember], ADIdentityNotFoundException
        + FullyQualifiedErrorId : SetADGroupMember.ValidateMembersParameter,Microsoft.ActiveDirectory.Management.Commands.AddADGroupMember

I tried to set -Members both “[email protected]” (UserPrincipalName) and “DomainB/UserB” but error occurred. The major version of PowerShell is 4.

本文标签: powershellAddADGroupMember from other domain userStack Overflow