Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ title: Remove-HVEAppAccess
## SYNOPSIS
This cmdlet is available only in the cloud-based service.

Use the Remove-HVEAppAccess cmdlet to remove applications from the Allowed Apps list of a high volume email (HVE) account.
Use the Remove-HVEAppAccess cmdlet to remove applications from 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).

Expand All @@ -27,7 +27,7 @@ Remove-HVEAppAccess [-Identity] <MailUserIdParameter> -AppIds <MultiValuedProper
```

## 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).

Expand All @@ -39,14 +39,14 @@ You need to be assigned permissions before you can run this cmdlet. Although thi

### Example 1
```powershell
Remove-HVEAppAccess -Identity simone@tailspintoys.com -AppIds "11111111-1111-1111-1111-111111111111"
Remove-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.

### Example 1
```powershell
Remove-HVEAppAccess -Identity simone@tailspintoys.com -AppIds "11111111-1111-1111-1111-111111111111","22222222-2222-2222-2222-222222222222"
Remove-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.
Expand Down