Archive
How to easily view resource mailboxes calendar free/busy using Outlook calendar groups
- Display all items in a category with a single click on the checkbox I front of the calendar group
-
Display any portion of the time line in " scheduling view" by
-
Selecting the days in the square calendar sheet in the upper left
-
Navigate the time line with the bottom horizontal scrollbar
-
Note the additional helpful "from [start date]" indicator in a mailboxes booking that is not displayed completely
How to quickly add resource mailbox calendars as an Outlook calendar group
- Right-click the left calendar tree.
-
Choose context menu item: add calendar group / from address list:
-
Type " LRC" to search – or the consistent naming scheme you implemented (I hope!).
-
Select all relevant calendars to add.
-
Click on button: "calendar".
-
Click on button: "ok":
-
Done:
Protected: How to share Exchange room and resource mailbox calendars
Protected: Meet the Resource Attendants and their Scheduling Assistants– or Who are these people, anyway?
Setting time zone for all and for all misconfigured OWA users
live@edu/Office365 Exchange in the cloud does not seem to allow setting a default time zone, but rather leaves it to the user to change the time zone (defaulting to the time zone the cloud server is in that the user happens to hit) on first login – in the world I operate in, большая ошибка!
How to use the cmdlet set-MailboxRegionalConfiguration with parameter TimeZone to change the time zone of all your mailboxes is nicely explained on the blog How Exchange Works here, including screenshot and PowerShell command.
Unfortunately such an operation is reported to have needed 3 days for updating all mailboxes in an educational live@edu installation with 30000 users… You can restrict the mailboxes touched by examining first which are not in your local time zone (consult the MS TimeZone table for syntax, e.g. US “Eastern Standard Time”):
$mymailboxes = get-mailbox
ForEach ($examinedmailbox in $mymailboxes){
$regionalconfig = get-MailboxRegionalConfiguration –identity $examinedmailbox.identity
if ($regionalconfig.timezone -ne “Eastern Standard Time”){
Set-MailboxRegionalConfiguration -identity $examinedmailbox.identity -TimeZone “Eastern Standard Time” -confirm:$false
}
}