# Modification du quota d’une BAL Exchange.

- Par défaut 50Go
- On peut mettre en place des quotas appliqués depuis le serveur
- Se fait en ligne de commande avec POWERSHELL.

[Configuration de quotas de stockage pour une boîte aux lettres](https://docs.microsoft.com/fr-FR/Exchange/recipients/user-mailboxes/storage-quotas?view=exchserver-2019)

[Increase or customize Exchange Online mailbox size - Exchange](https://learn.microsoft.com/en-us/exchange/troubleshoot/user-and-shared-mailboxes/increase-or-customize-mailbox-size)

### Télécharger les packages.

```powershell
Install-Module ExchangeOnlineManagement

```

### Connexion au tennent de l’entreprise

```powershell
Connect-ExchangeOnline -DelegatedOrganization DOMAINE DE MESSAGERIE

```

### Récupérer les quotas du compte

```powershell
Get-Mailbox BAL USER |  Format-List IssueWarningQuota,ProhibitSendQuota,ProhibitSendReceiveQuota,UseDatabaseQuotaDefaults

```

### Définir de nouveaux quotas

```powershell
Set-Mailbox BAL USER -ProhibitSendQuota 7GB -ProhibitSendReceiveQuota 7.1GB -IssueWarningQuota 6.75GB

```

### Se deconnecter !

```powershell
exit

```

[Augmenter ou personnaliser la taille de la boîte aux lettres Exchange Online - Exchange](https://learn.microsoft.com/fr-fr/exchange/troubleshoot/user-and-shared-mailboxes/increase-or-customize-mailbox-size)