Powershell获取世纪互联Office365中所有用户的OWA时区

get-mailbox -resultsize unlimited | Get-MailboxRegionalConfiguration | select Identity,TimeZone | where {$_.TimeZone -ne "China Standard Time"} | Export-Csv -Encoding utf8 -NoTypeInformation -Path .\OWATimeZone.csv



get-pssession | remove-pssession

 

你可能感兴趣的:(powershell)