Exchange 2010をOffice 365サブスクリプションの一部として使用しています。 Aliceのみが所有するセキュリティグループがあります。アリスのアカウントを使用せずに、管理者はどのようにしてそのセキュリティグループの所有権を取得できますか?
PS C:\> Get-DistributionGroup "SecurityGroupX" |
Select ManagedBy -ExpandProperty "ManagedBy"
namprd00.prod.Outlook.com/Microsoft Exchange Hosted Organizations
/example.onmicrosoft.com/alice
私は組織管理の役割のメンバーなので、この権限を上書きできると期待していました。 Exchange管理ポータルを使用してみましたが、PowerShellも使用してみました。
PS C:\> Set-DistributionGroup "SecurityGroupX" -ManagedBy "[email protected]"
You don't have sufficient permissions. This operation can only be performed by a
manager of the group.
+ CategoryInfo : NotSpecified: (:) [Set-DistributionGroup], OperationRequiresGroupManagerException
+ FullyQualifiedErrorId : 99CEE042,Microsoft.Exchange.Management.RecipientTasks.SetDistributionGroup
+ PSComputerName : bl0prd0000psh.Outlook.com
この質問をする過程で、私は答えを見つけました。 Set-DistributionGroup
にはパラメータがあります-BypassSecurityGroupManagerCheck
この目的のために。
PS C:\> Set-DistributionGroup "SecurityGroupX" `
-ManagedBy "[email protected]" `
-BypassSecurityGroupManagerCheck