Missing the Mailbox Alias...

Hi People!

I'm trying this line:

Get-mailbox -RecipientTypeDetails RoomMailBox | Get-MailboxCalendarSettings| select Identity,BookingWindowInDays,MaximumDurationInMinutes,ConflictPercentageAllowed, DefaultReminderTime | export-csv MyMailboxesCalendarSettings.csv

How can I get the alias instead of Identity for each mailbox? I tried to type just Alias but it doesn't work. 

Thanks in advance!

\\Emilio


April 1st, 2015 8:37am

That's because Get-MailboxCalendarSettings doesn't have the alias field. You can try this:

Get-mailbox -RecipientTypeDetails RoomMailBox | % { Get-CalendarProcessing $_.Identity | select Identity,BookingWindowInDays,MaximumDurationInMinutes,ConflictPercentageAllowed, DefaultReminderTime,@{n="Alias1";e={(Get-Mailbox $_.Identity).alias}}}


Free Windows Admin Tool Kit Click here and download it now
April 1st, 2015 4:27pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics