Establecer tamaño de los buzones en Exchange
Para establecer el tamaño de los buzones en exchange se puede hacer mediante los siguientes comandos de PowerShell
Set-Mailbox -Identity John -DeliverToMailboxAndForward $true -ForwardingAddress jose@contoso.com
Get-Mailbox -OrganizationalUnit "Marketing" | Set-Mailbox -IssueWarningQuota 209715200 -ProhibitSendQuota 262144000 -ProhibitSendReceiveQuota 293601280 -UseDatabaseQuotaDefaults $false
Get-User -Filter "Department -eq 'Customer Service'" | Set-Mailbox –MaxSendSize 2097152
Set-Mailbox -Identity John -DeliverToMailboxAndForward $true -ForwardingAddress jose@contoso.com
Get-Mailbox -OrganizationalUnit "Marketing" | Set-Mailbox -IssueWarningQuota 209715200 -ProhibitSendQuota 262144000 -ProhibitSendReceiveQuota 293601280 -UseDatabaseQuotaDefaults $false
Get-User -Filter "Department -eq 'Customer Service'" | Set-Mailbox –MaxSendSize 2097152
Comments