-
-
Notifications
You must be signed in to change notification settings - Fork 108
Closed
Description
Get-Group output can miss data if an array is long enough.
Expected Behavior
Get-Group
Name : sysadmin
Description : Read and write access
Users : {a, b, c, d, e, f, g}
Roles : {1, 2, 3, 4, 5, 6}
Current Behavior
Get-Group
Name : sysadmin
Description : Read and write access
Users : {a, b, c, d...}
Roles : {1, 2, 3, 4...}
Possible Solution
- Set
$FormatEnumerationLimit = -1in the PoshBot environment. Generally, elllipsis are bad, if you have no recourse to further explore objects (i.e. with raw PowerShell), it seems like forcing this in the environment (perhaps with an option to override via config) would be acceptable - Get fancy and customize the output - this seems less 'built in' and could be delicate
Happy to help if you have any preferences in direction : )
Cheers!
Reactions are currently unavailable