您好,登錄后才能下訂單哦!
公司用的office365的Excahnge Online,云端默認(rèn)有50G容量。
2,3年下來,發(fā)現(xiàn)銷售或者售后的郵箱容量會(huì)很快就要到達(dá)極限了,為了方便查看那些用戶快到使用極限,那肯定要用powershell.
附:官方文檔,如何用powershell連接到Exchange Online
https://docs.microsoft.com/zh-cn/powershell/exchange/exchange-eop/connect-to-exchange-online-protection-powershell?view=exchange-ps
#獲取ECH用戶郵箱到csv,再AD內(nèi)執(zhí)行
Get-ADUser -SearchBase 'OU=users,DC=domain,DC=com' -Filter {(mail -ne "null") -and (Enabled -eq "true")} -Properties mail | Select-Object mail | export-csv -Path C:\Script\maillist.csv -NoTypeInformation
#office365管理員賬號(hào)
$pw=ConvertTo-SecureString -String "Password" -AsPlainText -force
$cre= New-Object System.Management.Automation.PSCredential("xx@domain.com",$pw)
#鏈接office365
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $cre -Authentication Basic -AllowRedirection
#創(chuàng)建會(huì)話
Import-PSSession $Session -DisableNameChecking
#導(dǎo)入email地址 并輸出其郵件容量
Import-Csv C:\Script\maillist.csv| %{
$id=$_.mail
$size=Get-MailboxStatistics $id | select TotalItemSize
[pscustomobject]@{
email=$id
Size=$size
}
}|Export-Csv -Path C:\Script\size.csv -NoTypeInformation
#斷開會(huì)話
Remove-PSSession $Session
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。