3.3.2. 会議室への権限設定
SmartRooms用アカウントが、会議室(会議室アカウント)に対して予定を取得したり編集したりできるよう権限を設定します。
この設定はSmartRoomsを使うすべての会議室について行ってください。
注釈
会議室(会議室アカウント)が存在しない場合は、以下から事前に作成します。
Exchange管理センターから、[受信者] > [リソース] > [+] > [会議室メールボックス]
=手順=
- 会議室(会議室アカウント)の予定表に対する所有者権限を、SmartRooms用アカウントに付与します。
PowerShellで以下のコマンドを実行します。
Add-MailboxFolderPermission -Identity 会議室アカウント:\calendar -User SmartRooms用アカウント -AccessRights Owner
注釈
「:\calendar」が見つからないというエラーが表示された場合、表記が日本語になっている可能性があります。その際は、当該部分を「:\予定表」に置き換えて、再度実行してください。
- 会議室(会議室アカウント)のメールボックスに対するフルアクセス権限を、SmartRooms用アカウントに付与します。
PowerShellで以下のコマンドを実行します。
Add-MailboxPermission -Identity 会議室アカウント -User SmartRooms用アカウント -AccessRights FullAccess
=例=
- 会議室「meetingroom01@example.com」の予定表に対する所有者権限を、SmartRooms用アカウント「smartrooms@example.com」に付与します。
PowerShellで以下のコマンドを実行します。
Add-MailboxFolderPermission -Identity meetingroom01@example.com:\calendar -User smartrooms@example.com -AccessRights Owner
- 会議室「meetingroom01@example.com」のメールボックスに対するフルアクセス権限を、SmartRooms用アカウント「smartrooms@example.com」に付与します。
PowerShellで以下のコマンドを実行します。
Add-MailboxPermission -Identity meetingroom01@example.com -User smartrooms@example.com -AccessRights FullAccess