entra-powershell icon indicating copy to clipboard operation
entra-powershell copied to clipboard

🚀-AppendSelected Feature

Open SteveMutungi254 opened this issue 9 months ago • 0 comments

Current Challenge:

When you use -Property in Entra PowerShell or -Select in Microsoft Graph PowerShell SDK, only the specified properties are returned, and the default properties are excluded. This is not ideal for usability.

Why it matters:

Entra PowerShell reduces customer friction and improves usability through thoughtful cmdlet and parameter design. This feature supports that goal.

New experience:

We plan to create a better experience using this pattern:

Pattern 1:

Get-EntraUser : should return default properties.

Pattern 2:

Get-EntraUser -Select Id, DisplayName: should return only selected properties.

Pattern 3:

Get-EntraUser -Select -AppendSelected : should return default properties and the selected ones.

Notes:

Append properties selected with default properties when this switch is on, only works with parameter '-Select'.

Roadmap tracker:

This issue serves as a roadmap tracker.

SteveMutungi254 avatar Mar 04 '25 06:03 SteveMutungi254