I would like to export project properties using Get-RichProjects and format the table using the Format-Table cmdlet.
Each column in the report will list each project property. How would I select each project property?
Selecting the ProjectProperties displays a truncated list. See screenshot:
Any help would be appeicated. Thank you.
You could convert the RichProject's ProjectProperties HashTable to a PowerShell object PSObject as follows:
Get-PWRichProjects -PopulateProjectProperties | % { New-Object PSObject -Property $_.ProjectProperties } | Format-Table
Thank you for your prompt reply, much appeciated.