Table of Contents
Set-Mailbox ConfRoom1 -Type Room |
You can use the following values for the Type parameter:
New-Mailbox -Name "mailbox" -Database "database" -UserPrincipalName mailbox@domain.com -Shared Add-MailboxPermission "mailbox" -User "user" -Access Rights FullAccess Add-ADPermission "mailbox" -User "user" -ExtendedRights Send-As |
Show Server Name, Database Name, Database Size:
Get-MailboxDatabase -Status | select ServerName,Name,DatabaseSize |
Show Database and Mailbox Count
Get-Mailbox | Group-Object -Property:Database | Select-Object name,count |
Show current move Requests and % Complete
Get-MoveRequest | Get-MoveRequestStatistics |