by higginsw at 2013-02-18 18:04:24
Hi, I want to do something every simple, but I can not find out what I am doing wrong.by higginsw at 2013-02-18 18:30:54
setup is like this:
my forest have 3 domains under it.
myforest.org
*domainAAA.myforest.org
*domainBBB.myforest.org
*domainCCC.myforest.org
I have a group in domainAAA called "BluePenUsers"
I want to add users from domainBBB and domainCCC to this group$gg = get-adgroup -filter {(displayname -eq "BluePenUsers")} -server domainAAA.myforest.org
$u1 = get-aduser "Username" -server domainAAA.myforest.ordg
$u2 = get-aduser "Username" -server domainBBB.myforest.ordg
$u3 = get-aduser "UserName" -server domainCCC.myforest.ordg
When I run the Add-ADGroupMember I get the following;Add-ADGroupMember $gg $u1
Work!Add-ADGroupMember $gg $u2
Fail! Add-ADGroupMember : The server is unwilling to process the requestAdd-ADGroupMember $gg $u3
Fail! Add-ADGroupMember : The server is unwilling to process the request
Thanks for any help on this!!
I have also tried the quest tools. Still a no go.