I populated an array with some GUIDs. When I do $array.count
I get 350, which is what I expected. When I print $array
, though, I only get 118 results. Any ideas why this would happen? Populated with this script:
$flows = get-adminflow -environmentname $environmentname -verbose
$flowids = $null
$flowids = @()
foreach($Flow in $flows){$flowids += $flow.Internal.properties.workflowEntityId}
$flowids.count
$flowids