码迷,mamicode.com
首页 > 其他好文 > 详细

设置对Exchange Online 用户邮箱完全控制权限

时间:2017-01-06 22:55:34      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:用户   邮箱   target   online   blank   

部分1:

1.连接到Exchange Online

$UserCredential = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://partner.outlook.cn/PowerShell-LiveID/ -Credential $UserCredential -Authentication Basic -AllowRedirection

Import-PSSession $Session

2. 对单个邮箱设置

例如:设置zhangsan对zhouwu的邮箱有完全访问的权限

Add-MailboxPermission -Identity "zhouwu" -User zhangsan -AccessRights fullaccess -InheritanceType all

技术分享

3. 对所有邮箱设置

Get-Mailbox -ResultSize unlimited -Filter{(recipienttypedetails -eq ‘usermailbox‘)-and (alias -ne ‘zhangsan‘)} |Add-MailboxPermission -User zhangsan -AccessRights fullaccess -InheritanceType all

 

部分2:

去除邮箱权限

Remove-MailboxPermission这个命令为去除邮箱权限的命令,您只要把原来加权限的add-MailboxPermission变成Remove-MailboxPermission就可以去除权限;

具体参考链接:https://technet.microsoft.com/en-us/library/bb125153(v=exchg.160).aspx




设置对Exchange Online 用户邮箱完全控制权限

标签:用户   邮箱   target   online   blank   

原文地址:http://gengchunhong.blog.51cto.com/9724014/1889743

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!