Link to home
Start Free TrialLog in
Avatar of loshdog
loshdog

asked on

SBS 2008 Share user calendar.

Hello and thank you for your time.

We have SBS 2008 server w/ exchange running.

There are 10 users w/ email boxes.

Each user has their own workstation and they all are using outlook.

We wanted to share everyone's calendars. Want the ability to view each other's calendars in outlook.

Thank you in advance.

ASKER CERTIFIED SOLUTION
Avatar of shadowmantx
shadowmantx
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of loshdog
loshdog

ASKER

Is there a way to acomplish this on the server w/o the users needing to send an invite?

Then the user who wants to see a shared calendar needs to click open shared calendar in outlook?

Can i share the users calendars from the server and set the viewing permissions....

Thank you..

The following will give Marge & Homer author access to Bart & Lisa's calendar (they can add & remove, update, etc)
add-MailboxFolderPermission Bart@simpson.com:\Calendar -User Homer@simpson.com -AccessRights Author
add-MailboxFolderPermission Lisa@simpson.com:\Calendar -User Homer@simpson.com -AccessRights Author
add-MailboxFolderPermission Bart@simpson.com:\Calendar -User Marge@simpson.com -AccessRights Author
add-MailboxFolderPermission Lisa@simpson.com:\Calendar -User Marge@simpson.com -AccessRights Author

This will give Bart & Lisa view access to Homer & Marge
add-MailboxFolderPermission Homer@simpson.com:\Calendar -User Bart@simpson.com -AccessRights Reviewer
add-MailboxFolderPermission Homer@simpson.com:\Calendar -User Lisa@simpson.com -AccessRights Reviewer
add-MailboxFolderPermission Marge@simpson.com:\Calendar -User Bart@simpson.com -AccessRights Reviewer
add-MailboxFolderPermission Marge@simpson.com:\Calendar -User Lisa@simpson.com -AccessRights Reviewer

Verify permission by:
get-MailboxFolderPermission Homer@simpson.com:\Calendar
get-MailboxFolderPermission Marge@simpson.com:\Calendar
get-MailboxFolderPermission Bart@simpson.com:\Calendar
get-MailboxFolderPermission Lisa@simpson.com:\Calendar

If you are updating permisions on folders, rather than adding them, uset the "set-" version of the command
set-MailboxFolderPermission Lisa@simpson.com:\Calendar -User Homer@simpson.com -AccessRights Reviewer
set-MailboxFolderPermission Bart@simpson.com:\Calendar -User jguiney@simpson.com -AccessRights Reviewer

Open in new window

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of loshdog

ASKER

Hello and thank you...

As I am not familiar w/ Exchange Management Shell. The first solution in my case seemed less complex.

Thank you again.