Get-MailboxCalendarConfiguration
Applies to: Exchange Server 2010
Topic Last Modified: 2011-03-19
Use the Get-MailboxCalendarConfiguration cmdlet to show the calendar settings for a specified mailbox.
Get-MailboxCalendarConfiguration -Identity <MailboxIdParameter> [-DomainController <Fqdn>]
| Parameter | Required | Type | Description |
|---|---|---|---|
|
Identity |
Required |
Microsoft.Exchange.Configuration.Tasks.MailboxIdParameter |
The Identity parameter specifies a unique identifier for the mailbox. You can use the following values:
|
|
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that retrieves data from Active Directory. |
The Get-MailboxCalendarConfiguration cmdlet returns settings for the calendar of the specified mailbox, including the following:
-
Workdays Days that appear in the calendar as work days in Microsoft Office Outlook Web App
-
WorkingHoursStartTime Time that the calendar work day starts
-
WorkingHoursEndTime Time that the calendar work day ends
-
WorkingHoursTimeZone Time zone set on the mailbox for the working hours start and end times
-
WeekStartDay First day of the calendar work week
-
ShowWeekNumbers Number for each week ranging from 1 through 52 for the calendar while in month view in Outlook Web App
-
TimeIncrement Increments in minutes in which the calendar displays the time in Outlook Web App
-
RemindersEnabled Whether Outlook Web App provides a visual cue when a calendar reminder is due
-
ReminderSoundEnabled Whether a sound is played when a calendar reminder is due
-
DefaultReminderTime Length of time before each meeting or appointment that the calendar in Outlook Web App shows the reminder
To see all of the settings returned, pipeline the command to the Format-List command. To see a code sample, see "EXAMPLE 1" later in this topic.
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "User options" entry in the Client Access Permissions topic.
| Error | Description |
|---|---|
|
|
|
This example retrieves all the calendar settings for Kai's mailbox where the Identity parameter is specified in the alias format.
Get-MailboxCalendarConfiguration -Identity kai | Format-List
This example uses the Identity parameter specified in the domain\account format and returns the calendar settings for Tony's mailbox.
Get-MailboxCalendarConfiguration -Identity contoso\tony
This example requests that the domain controller DC1 retrieves calendar settings for Kai's mailbox from Active Directory.
Get-MailboxCalendarConfiguration -Identity kai -DomainController DC1
