我们使用Exchange 2010作为Office 365订阅的一部分。 我们只有爱丽丝拥有一个安全组。 如果不使用Alice的帐户,pipe理员如何获得该安全组的所有权?
PS C:\> Get-DistributionGroup "SecurityGroupX" | Select ManagedBy -ExpandProperty "ManagedBy" namprd00.prod.outlook.com/Microsoft Exchange Hosted Organizations /example.onmicrosoft.com/alice
我是组织pipe理angular色的成员,所以我希望能够覆盖此权限。 我尝试使用Exchangepipe理门户,我也尝试使用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
在问这个问题的过程中,我find了答案。 Set-DistributionGroup为此具有参数-BypassSecurityGroupManagerCheck 。
PS C:\> Set-DistributionGroup "SecurityGroupX" ` -ManagedBy "[email protected]" ` -BypassSecurityGroupManagerCheck