步驟:
1、以管理員身份運行Windows PowerShell ,輸入以及下命令連接 Office 365 :
$Cred = Get-Credential -UserName "*********" -Message "Enter password" *代表當(dāng)前用戶賬戶;
2、接著執(zhí)行:$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Cred -Authentication Basic -AllowRedirection
3、接著執(zhí)行:Import-PSSession $Session 如下圖所示:

4、設(shè)置完成后我們使用命令查看當(dāng)前默認(rèn)的 Office 365 郵箱計劃,命令如下:
Get-MailboxPlan | Where {$_.IsDefault -eq "True"}

5、查看 MaxSendSize 和 MaxReceiveSize 屬性:Get-MailboxPlan | Where {$_.IsDefault -eq "True"} | Select -Property MaxSendSize, MaxReceiveSize 如下圖所示:

MaxSendSize 控制最大發(fā)送郵件大小, MaxReceiveSize 控制最大接收郵件ametit.com大小。從返回的數(shù)值我們可以看到,當(dāng)前 MaxSendSize 為35MB,而 MaxReceiveSize 則為36MB。
6、接下我們輸入:Get-MailboxPlan | Where {$_.IsDefault -eq "True"} | Set-MailboxPlan?MaxSendSize 150MB -MaxReceiveSize 150MB 命令后按下回車鍵即可完成修改!

操作完成后我們就成功的將MaxSendSize 和 MaxReceiveSize 值修改為135M了,這也說明我們已經(jīng)成功的將office 365的郵件收發(fā)限制35給破解了!