Remove group membership from multiple domain

The Powershell cmdlet Remove-ADGroupMember have a problem to remove group membership in this case : user account from Domain1.domain.local group from Domain2.domain.local If you run the command : Remove-ADGroupMember -Identity “CN=GroupName,OU=Groups,DC=Domain2,DC=domain,DC=local” -Members “CN=UserName,OU=Users,DC=Domain1,DC=domain,DC=local” -confirm:$false -server “dc01.Domain1.domain.local” You will have the

Remove all group memberships from a user

This script can remove all group memberships from an Active Directory user, except the “Domain Users” group import-module activedirectory $DistinguishedName = “cn=youruseraccount,ou=users,dc=domain,dc=local” (Get-ADUser $DistinguishedName -Properties MemberOf | Select-Object MemberOf).MemberOf | % { Remove-ADGroupMember -Identity $_ -Members $DistinguishedName -confirm:$false } My