Описание тега member-enumeration
None Функция PowerShell v3+, которая использует обычную точечную нотацию для неявного извлечения значений свойств из всех элементов массива.
См. Это сообщение в блоге команды PowerShell
Простой пример:
# Get all files in the current dir., as an array.
$files = @(Get-ChildItem -File)
# Use .Name directly on the array to return an enumeration of
# its elements' Name property values.
# It is the faster equivalent of:
# $files | ForEachObject { $_.Name }
$files.Name