In order to how to set Language and Time Zone for OWA users in Office 365, please refer to the cmdlets below,
For individual user:
The cmdlet below will set the language as English (United States) and the time zone to Eastern Standard Time for a single user
Get-mailbox -Identity testu22@cspdom.ml | Set-MailboxRegionalConfiguration -Language 1033 -TimeZone "Eastern Standard Time"
For all the mailboxes at once:
The cmdlet below will set the language as English (United States) and the time zone to Eastern Standard Time for all the OWA users,
Get-mailbox | Set-MailboxRegionalConfiguration -Language 1033 -TimeZone "Eastern Standard Time"
Note: Please refer to the articles below for more info
Set-MailboxRegionalConfiguration (ExchangePowerShell) | Microsoft Docs
Set Language and Time Zone for all OWA users in Office 365 - Quadrotech (quadrotech-it.com)
Comments
0 comments
Please sign in to leave a comment.