Powershell list all properties of an object

  • Post by Mike Dixson
  • Mar 08, 2018
post-thumb

Some powershell get commands only output a handful of the object properties get-CalendarProcessing being one such command, than returns just one property.

To get all properties of an object you can pipe to format-list *
get-CalendarProcessing -identity room1@domain.com | Format-List *

If you know the specific attribute you are after you can still access this variable using select-object.
get-CalendarProcessing -Identity room1@domain.com | Select-Object AllowConflicts