These are formatting cmdlets that control how output is displayed:
Format-Table: Displays output in tabular format with columns. Good for comparing multiple objects side by side.
Format-List: Displays output as a list with property names and values. Better for detailed view of single objects or when properties have long values.
Out-GridView: Opens output in a separate GUI window with sorting, filtering, and selection capabilities. Interactive and user-friendly for data exploration.