Here is a great snip-it of PowerShell script for granting a user rights to view (or even modify) all user calendars in an organization. Excellent for managers.
Get-Mailbox | ForEach {Add-MailboxFolderPermission $_":\Calendar"
-User email@address.com -AccessRights Reviewer}