1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Powershell で Exchange Online の全ユーザーのメールボックスの言語設定を日本語に変える

Posted at

Microsoft365でユーザー(Mailbox)を作成したとき、言語が日本語にならない(デフォルト設定する箇所ご存じの方は教えてください)。
PowerShellで言語がJPでないメールボックス(UserMailbox)を一気に日本語に変えるスクリプトです。

Get-Mailbox -Filter "RecipientTypeDetails -eq 'UserMailbox' -and LanguagesRaw -notlike '*JP*'"|
foreach {Set-MailboxRegionalConfiguration -Identity $_.Identity -Language 'ja-JP' -DateFormat 'yyyy/MM/dd' -TimeFormat 'H:mm' -TimeZone 'Tokyo Standard Time' -LocalizeDefaultFolderName:$True }

※ スケジュールの共有設定がデフォルトではAvailabilityOnly(空き時間情報の表示)なのでこれを一括でReviewer(予定の詳細表示)に変えようとしたところ、スケジュールのフォルダ名が「予定表」だったり英語だったりして指定できないので日本語に統一するために作りました。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?