Working in a larger Active Directory environment I occasionally got the error:
1 |
Get-ADGroupMember : The size limit for this request was exceeded |
When trying to read all the members (recursively) of an AD Group. This was annoying since in the alternatives are limited especially when using the -recursive option. You could try with:
1 |
DSGET group -members | dsget user -samid |
or
1 |
Get-ADGroup -properties Member | select-object -expandproperty member |
However these don’t have the recursive option. And …
Continue reading How to fix: Get-ADGroupMember : The size limit for this request was exceeded