Prevent PowerGUI from truncating the output
Get-QADGroup "admins" | Ft -autosize -wrap
If space console is to small try:
Get-QADGroup "admins" | Fl name,type,dn
edit:
Get-QADGroup "admins" | Ft -autosize | out-string -width 4096
This will prevent all output result truncating -
Run this and first to view the default enumeration limit.
$FormatEnumerationLimit
Set the above to -1 to avoid truncating
$FormatEnumerationLimit=-1