Size Limit Exceeded For Get-Adgroupmember

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

How do I resolve the "Size limit

exceeded for GetAdgroupmember" error when


listing a group with thousands of
members?
I run the following commands from the 2.0 Command line on a Domain Controller to list the
members of a large group (thousands of members) and to count the number of objects
(measure-object):
get-adgroupmember "mygroup"
get-adgroupmember "mygroup" | measure-object
Get-ADGroupMember : The size limit for this request was exceeded
At line:1 char:18
+ get-adgroupmember <<<< "mygroup"
+ CategoryInfo

: NotSpecified: (mygroup:ADGroup) [Get-ADGroupMember],

ADException
+ FullyQualifiedErrorId : The size limit for this request was
exceeded,Microsoft.ActiveDirectory.Management.Comman
ds.GetADGroupMember

You might also like