使用 Exchange 2010 SP1 远程 powershell,我使用 Add-MailboxPermission cmdlet 为用户添加了权限。这是我用来添加权限的命令...
Add-MailboxPermission user_mailbox -User admin_user -AccessRights FullAccess -InheritanceType All
效果很好。一旦我运行它,admin_user 就可以访问 user_mailbox 的邮箱。现在,当我尝试删除这些权限时,它失败了。这是我用来删除权限的命令...
Remove-MailboxPermission user_mailbox -User admin_user -AccessRights FullAccess -InheritanceType All
这是它给出的错误......
Object reference not set to an instance of an object.
+ CategoryInfo : NotSpecified: (:) [Remove-MailboxPermission], Nu
llReferenceException
+ FullyQualifiedErrorId : RemoteHostExecutionException
我不确定这个异常意味着什么,所以我不知道去哪里找。有没有其他方法可以通过远程powershell删除邮箱权限?