Powershellを使用してメールボックスに委任アクセス許可を設定するにはどうすればよいですか?


2

この方法を使用して、ユーザーをOutlook委任に追加するとき

ここに画像の説明を入力してください

私はそれらを次のpowershellコマンドで見る

[PS] C:\Windows\system32>Get-CalendarProcessing aaaa| fl


AutomateProcessing                  : AutoUpdate
AllowConflicts                      : False
BookingWindowInDays                 : 180
MaximumDurationInMinutes            : 1440
AllowRecurringMeetings              : True
EnforceSchedulingHorizon            : True
ScheduleOnlyDuringWorkHours         : False
ConflictPercentageAllowed           : 0
MaximumConflictInstances            : 0
ForwardRequestsToDelegates          : True
DeleteAttachments                   : True
DeleteComments                      : True
RemovePrivateProperty               : True
DeleteSubject                       : True
AddOrganizerToSubject               : True
DeleteNonCalendarItems              : True
TentativePendingApproval            : True
EnableResponseDetails               : True
OrganizerInfo                       : True
ResourceDelegates                   : {asdf.com/New York/NY Users/bbbb, bbbb}
RequestOutOfPolicy                  : {}
AllRequestOutOfPolicy               : False
BookInPolicy                        : {}
AllBookInPolicy                     : True
RequestInPolicy                     : {}
AllRequestInPolicy                  : False
AddAdditionalResponse               : False
AdditionalResponse                  :
RemoveOldMeetingMessages            : True
AddNewRequestsTentatively           : True
ProcessExternalMeetingMessages      : False
RemoveForwardedMeetingNotifications : False

ただし、ユーザーをデリゲートとして設定すると、次のエラーが表示されます。

set-CalendarProcessing ifischer -ResourceDelegates {"aaa.com/New York/NY Users/bbb,bbb"}
ResourceDelegates can only be enabled on resource mailboxes.

回答:


1

この応答は少し遅れています、おaび申し上げます。

そこで使用しているpowershellコマンドレット(Set-CalendarProcessing)は、「リソース」メールボックス専用です。これは、部屋、社用車、プロジェクターなど、カレンダーで時間を予約することで組織が使用するものなどのオブジェクトを指します。

この特定のExchangeオブジェクトタイプには、送信されるカレンダー要求を自動的に受け入れたり拒否したりすることができる特別なカレンダーアシスタントがあります。または、デリゲートを設定できます。ここでの命名は、デリゲートがExchangeの世界の他の場所で何か他のものを意味するために使用されるため、誤解を招きます。

受け取ったエラーは、このコマンドレットを実行しようとしているメールボックスがリソースタイプではないことを示しているため、特別なカレンダーアテンダントがないため、デリゲートを使用できません。

私が知る限り、設定しようとしているデリゲートの種類を設定する唯一の方法は、(スクリーンショットのように)Outlookデスクトップクライアントから手動で設定することです。

これがお役に立てば幸いです。


1

次のコマンドでこれを完了できます。

Add-MailboxFolderPermission -Identity user1@domian:\calendar -user user2@domian -SharingPermission Delegate -AccessRights Editor

メールボックスへのアクセス権が既にSet-MailboxFolderPermissionあるAdd-MailboxFolderPermission場合の代わりに使用することを忘れないでください。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.