diff --git a/exchange/exchange-ps/ExchangePowerShell/Add-HVEAppAccess.md b/exchange/exchange-ps/ExchangePowerShell/Add-HVEAppAccess.md index 358d94de24..33dfef9c8f 100644 --- a/exchange/exchange-ps/ExchangePowerShell/Add-HVEAppAccess.md +++ b/exchange/exchange-ps/ExchangePowerShell/Add-HVEAppAccess.md @@ -13,7 +13,7 @@ title: Add-HVEAppAccess ## SYNOPSIS This cmdlet is available only in the cloud-based service. -Use the Add-HVEAppAccess cmdlet to add applications to the Allowed Apps list of a high volume email (HVE) account. +Use the Add-HVEAppAccess cmdlet to add applications to the Allowed Apps list of a High Volume Email (HVE) account. For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://learn.microsoft.com/powershell/exchange/exchange-cmdlet-syntax). @@ -27,27 +27,29 @@ Add-HVEAppAccess -AppIds [-Identity] ``` ## DESCRIPTION -An HVE account is a special type of mail user (also known as a mail-enabled user) used to send large amounts of email. For more information, see [High volume email](https://learn.microsoft.com/exchange/mail-flow-best-practices/high-volume-mails-m365). +An HVE account is a special type of mail user (also known as a mail-enabled user) used to send large amounts of email. For more information, see [High Volume Email](https://learn.microsoft.com/exchange/mail-flow-best-practices/high-volume-mails-m365). The Allowed Apps list defines which Microsoft Entra applications are authorized to authenticate and send email via OAuth using the specified HVE account. Each HVE account can have up to ten allowed apps assigned. For more information, see [OAuth authentication for High Volume Email](https://learn.microsoft.com/exchange/mail-flow-best-practices/oauth-high-volume-mails-m365). +Changes can take up to 5 minutes to take effect. + You need to be assigned permissions before you can run this cmdlet. Although this article lists all parameters for the cmdlet, you might not have access to some parameters if they aren't included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://learn.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions). ## EXAMPLES ### Example 1 ```powershell -Add-HVEAppAccess -Identity simone@tailspintoys.com -AppIds "11111111-1111-1111-1111-111111111111" +Add-HVEAppAccess -Identity HVEAccount01@tailspintoys.com -AppIds "11111111-1111-1111-1111-111111111111" ``` -This example removes the specified application from the Allowed Apps list of the specified HVE account. +This example adds the specified application to the Allowed Apps list of the specified HVE account. ### Example 1 ```powershell -Add-HVEAppAccess -Identity simone@tailspintoys.com -AppIds "11111111-1111-1111-1111-111111111111","22222222-2222-2222-2222-222222222222" +Add-HVEAppAccess -Identity HVEAccount01@tailspintoys.com -AppIds "11111111-1111-1111-1111-111111111111","22222222-2222-2222-2222-222222222222" ``` -This example removes the specified applications from the Allowed Apps list of the specified HVE account. +This example adds the specified applications to the Allowed Apps list of the specified HVE account. ## PARAMETERS