本文共 1644 字,大约阅读时间需要 5 分钟。
PowerShell命令:
New-Mailbox -Name "<Identity>" -Room
PowerShell命令示例:
New-MailBox -Name "11F22Room" -Room
PowerShell命令:
New-Mailbox -Name "<Name>" -Equipment
PowerShell命令示例:
New-Mailbox -Name "EQ01" -Equipment
PowerShell命令:
Set-CalendarProcessing "<Identity>" -AutomateProcessing AutoAccept
PowerShell命令示例:
Set-CalendarProcessing "11F22Room" -AutomateProcessing AutoAccept
PowerShell命令:
Get-MailBox | Where {$_.ResourceType -eq "Room"} | Set-CalendarProcessing -AutomateProcessing:AutoAccept
PowerShell命令:
Set-CalendarProcessing "<Identity>" –ResourceDelegates "<Identity>"
PowerShell命令示例:
Set-CalendarProcessing "11F22Room" –ResourceDelegates "zhangc"
PowerShell命令:
Add-MailBoxPermission "<Identity>" -User "<Identity>" -AccessRights FullAccess
PowerShell命令示例:
Add-MailBoxPermission "11F22Room" -User "zhangc" -AccessRights FullAccess
PowerShell命令:
Add-RecipientPermission "<Identity>" -Trustee "<Identity>" -AccessRights SendAs -Confirm:$False
PowerShell命令示例:
Add-RecipientPermission "11F22Room" -Trustee "zhangc" -AccessRights SendAs -Confirm:$False
PowerShell命令:
Set-CalendarProcessing "<Room name>" -AllowConflicts $True
PowerShell命令示例:
Set-CalendarProcessing "11F22Room" -AllowConflicts $True
PowerShell命令:
Get-Mailbox -Filter '(RecipientTypeDetails -eq "RoomMailBox")' | Select Name,Alias
PowerShell命令:
Get-Mailbox -Filter '(RecipientTypeDetails -eq "quipmentMailBox")' | Select Name,Alias
本文转自 zyliday 51CTO博客,原文链接:
http://blog.51cto.com/itsoul/2056285
转载地址:http://tcjko.baihongyu.com/