LoginSignup
0
1

More than 1 year has passed since last update.

PowerShell で Exchange Online の全ユーザーの予定表の既定の共有権限を「参照者」にする

Posted at

ユーザーのスケジュール内容をデフォルトで公開にする。

Get-Mailbox|
foreach {Get-MailboxFolderPermission -User "既定" -Identity ($_.Identity + ":\予定表") }|
Where-Object{$_.AccessRights -notlike '*Reviewer*'}|
foreach {Set-MailboxFolderPermission -User "既定" -Identity $_.Identity -AccessRights Reviewer}

※ ユーザーの言語が日本語でないと変更されないので事前に言語を日本語にしておく必要があります。
Powershell で Exchange Online の全ユーザーのメールボックスの言語設定を日本語に変える

0
1
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
0
1