User Tools

Site Tools


internet:mail:exchange:exchange_resources

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
internet:mail:exchange:exchange_resources [2014/01/02 09:10]
127.0.0.1 external edit
internet:mail:exchange:exchange_resources [2019/01/08 09:14] (current)
gcooper
Line 1: Line 1:
-====== Exchange Resource Scheduling ======+====== Exchange Resource Accounts ======
  
 http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/resource-mailboxes-exchange-2010-part1.html http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/resource-mailboxes-exchange-2010-part1.html
Line 10: Line 10:
  
 http://technet.microsoft.com/en-us/library/bb124374%28v=exchg.141%29.aspx http://technet.microsoft.com/en-us/library/bb124374%28v=exchg.141%29.aspx
 +
 +===== Convert a Mailbox to a Resource Account =====
 +
 +https://technet.microsoft.com/sv-se/library/jj710164(v=exchg.150)
 +
 +Examine the mailbox:
 +
 +<file>
 +Get-Mailbox -Identity copier@domain.tld | fl *resource*, *recipienttypedetail*
 +</file>
 +
 +Set the mailbox as a resource account:
 +
 +<file>
 +Set-Mailbox -Identity copier@domain.tld -Type Equipment
 +</file>
 +
 +===== Mail-Enable an Equipment Account =====
 +
 +FIXME Preliminary info
 +
 +https://docs.microsoft.com/en-us/powershell/module/exchange/mailboxes/enable-mailbox?view=exchange-ps
 +
 +https://docs.microsoft.com/en-us/powershell/module/exchange/users-and-groups/enable-mailuser?view=exchange-ps
 +
 +<file>
 +Enable-Mailbox -Identity copier@domain.tld -Equipment
 +</file>
 +
 +===== Set Room Resource so Details Show =====
 +
 +https://practical365.com/exchange-server/show-full-freebusy-exchange-2010-room-resource-mailboxes/
 +
 +https://blog.ctglobalservices.com/office-365/bfa/enable-users-to-show-calendar-information-of-room-mailboxes/
 +
 +In Exchange Management Shell:
 +
 +Show calendar details:
 +
 +<file>
 +Get-CalendarProcessing -Identity RoomName | fl
 +</file>
 +
 +Show current access rights:
 +
 +<file>
 +Get-MailboxFolderPermission RoomName:\Calendar
 +</file>
 +
 +:!: The default is ''{AvailabilityOnly}''.
 +
 +Set the default access rights to ''{Reviewer}'':
 +
 +<file>
 +Set-MailboxFolderPermission RoomName:\Calendar -User Default -AccessRights Reviewer
 +</file>
 +
 +Once permissions are given, you may also need something like:
 +
 +<file>
 +Set-CalendarProcessing -Identity <room_name> -AddOrganizerToSubject $true -DeleteComments $false -DeleteSubject $false
 +</file>
internet/mail/exchange/exchange_resources.1388679029.txt.gz · Last modified: 2014/01/02 09:10 by 127.0.0.1