下面的脚本可以帮助你将组织内的用户日历共享方式改为,所有组织内用户都可以相互的查看任何一个人的日历共享信息,并且以详情的方式显示(Office 365默认只显示忙闲信息)。
Set-ExecutionPolicy RemoteSigned
$LiveCred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection
Import-PSSession $Session
Foreach ($a in (Get-Mailbox).Identity) {
$a+=”:\日历”
Set-MailboxFolderPermission -Identity $a -User Default -AccessRights Reviewer
}
Latest posts by 管理员 (see all)
- 修改组织内用户日历共享方式 - 2015年9月16日
- Exchange Online 与本地Exchange 哪个适合你? - 2015年7月16日
- 如何订阅 Office 365 - 2015年7月15日
发布于:
浏览:5334 次
还没有评论