Permissions
Exchange 2010 設置室權限
我剛剛在 Exchange 2010 中使用啟用資源預訂助理選項成功創建了一個會議室。但是,域使用者無法預訂會議室。我理解啟用資源預訂服務員選項將使房間公開。
在 Exchange Managemenet Shell 中,我嘗試以作者身份授予使用者訪問此會議室的權限:
Add-MailboxFolderPermission -Identity testroom:\Calendar -User "user@domain.com" -AccessRights Author
在上述命令上按輸入後不久,使用者就可以預訂房間了。
我已嘗試創建安全組或通訊組來應用權限。他們都沒有努力授予權限。我收到此錯誤消息:
The User "GroupName" was found in Active Directory but isn't valid to use for permissions. Try an SMTP address instead.
我嘗試使用 SMTP 地址,但出現以下錯誤:
The user "Group SMTP Address" is either not valid SMTP Address, or there is no matching information.
組 SMTP 地址已存在並且可以正常工作。
向所有域使用者授予作者權限的最佳做法是什麼?當然,我不能對辦公室裡的數百名使用者這樣做。
預先感謝您的幫助。
我真誠地道歉,沒有發布我的問題的答案。
這實際上是我自己的錯誤。我閱讀了有關如何以錯誤方式添加郵箱文件夾權限的文件。
我用來設置的命令如下:
Add-MailboxFolderPermission -Identity testroom:\Calendar -User “default” -AccessRights Author
- 使用者“預設”會將 Exchange 中的所有使用者添加到測試室資源郵箱中以擁有作者訪問權限。
希望這能幫助大家設置和配置資源郵箱。