Windows 2022
Sponsored Link

Exchange Server 2019 : メールボックスのクォータを設定する2023/02/08

 
ユーザーのメールボックスにクォータの制限を設定します。
[1] PowerShell を起動して設定します。
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

# [Exchange Management Shell] 起動
PS C:\Users\exchangeadmin> LaunchEMS 

# 現在のクォータの設定
[PS] C:\Windows\system32> Get-Mailbox | Select Name,IssueWarningQuota,ProhibitSendQuota,ProhibitSendReceiveQuota,UseDatabaseQuotaDefaults 

Name                     : Server World
IssueWarningQuota        : Unlimited
ProhibitSendQuota        : Unlimited
ProhibitSendReceiveQuota : Unlimited
UseDatabaseQuotaDefaults : True

Name                     : Exchange Admin
IssueWarningQuota        : Unlimited
ProhibitSendQuota        : Unlimited
ProhibitSendReceiveQuota : Unlimited
UseDatabaseQuotaDefaults : True

Name                     : Ubuntu Linux
IssueWarningQuota        : Unlimited
ProhibitSendQuota        : Unlimited
ProhibitSendReceiveQuota : Unlimited
UseDatabaseQuotaDefaults : True

.....
.....

# 例として [Server World] ユーザーにクォータを設定
# IssueWarningQuota : 指定容量超過で警告メッセージを送信
# ProhibitSendQuota : 指定容量超過で送信禁止
# ProhibitSendReceiveQuota : 指定容量超過で送受信禁止
# UseDatabaseQuotaDefaults : 既定ではなくカスタムの設定を適用する場合は [False]
[PS] C:\Users\exchangeadmin> Set-Mailbox -Identity "Server World" `
-IssueWarningQuota 4gb `
-ProhibitSendQuota 4.5gb `
-ProhibitSendReceiveQuota 5gb `
-UseDatabaseQuotaDefaults $False 

[PS] C:\Windows\system32> Get-Mailbox "Server World" | Select Name,IssueWarningQuota,ProhibitSendQuota,ProhibitSendReceiveQuota,UseDatabaseQuotaDefaults 

Name                     : Server World
IssueWarningQuota        : 4 GB (4,294,967,296 bytes)
ProhibitSendQuota        : 4.5 GB (4,831,838,208 bytes)
ProhibitSendReceiveQuota : 5 GB (5,368,709,120 bytes)
UseDatabaseQuotaDefaults : False
Exchange Server 2019 : メールボックスのクォータを設定する (GUI)
[2] Exchange Server の管理アカウントで Exchange 管理センターにサインインし、左ペインで [受信者] を選択し、右ペインでクォータを設定したいユーザーを選択して、上部の編集アイコンをクリックします。
[3] 左ペインで、[メールボックス使用量] をクリックします。
[4] 右ペイン下部の [その他のオプション] をクリックします。
[5] メールボックスのカスタム設定にチェックを入れ、制限したいディスク容量を入力して [保存] ボタンをクリックします。
以上でユーザーのメールボックスにクォータの制限をかけることができます。
関連コンテンツ