Skip to content

Instantly share code, notes, and snippets.

@ebibibi
Created October 9, 2019 03:07
Show Gist options
  • Save ebibibi/faf6eebc1f774fc091d608cdf496ce6e to your computer and use it in GitHub Desktop.
Save ebibibi/faf6eebc1f774fc091d608cdf496ce6e to your computer and use it in GitHub Desktop.
Set all mailboxes to Japanese language.
Connect-EXOPSSession
Get-Mailbox | ForEach-Object { Set-MailboxRegionalConfiguration -Identity $_.displayname -DateFormat "yyyy/MM/dd" -TimeFormat "H:mm" -TimeZone "Tokyo Standard Time" -LocalizeDefaultFolderName:$True -Language "ja-JP"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment