以管理员身份运行Windows PowerShell ,输入以及下命令连接 Office 365 :
1、$Cred = Get-Credential -UserName "*********" -Message "Enter password"
2、$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Cred -Authentication Basic -AllowRedirection
3、Import-PSSession $Session
然后继续运行以下命令查看当前默认的 Office 365 邮箱计划:
Get-MailboxPlan | Where {$_.IsDefault -eq "True"}
然后继续运行以下命令查看默认邮箱计划的 MaxSendSize 和 MaxReceiveSize 属性:
Get-MailboxPlan | Where {$_.IsDefault -eq "True"} | Select -Property MaxSendSize, MaxReceiveSize
顾名思义, MaxSendSize 控制最大发送邮件大小, MaxReceiveSize 控制最大接收邮件大小。从返回的数值我们可以看到,当前 MaxSendSize 为35MB,而 MaxReceiveSize 则为36MB。
然后我们运行以下命令把这二者的值均修改为150MB:
Get-MailboxPlan | Where {$_.IsDefault -eq "True"} | Set-MailboxPlan MaxSendSize150MB -MaxReceiveSize 150MB
修改之后再次运行上面的查看命令,即可看到 MaxSendSize 和 MaxReceiveSize 属性的值均已被修改为150MB了。
现在Office 365邮箱发送和接收邮件的大小限制已经被增大到150MB了。