Skip to main content

entra app remove

Removes an Entra app registration

Usage

m365 entra app remove [options]

Alias

m365 aad app remove [options]
m365 entra appregistration remove [options]

Options

--appId [appId]

Application (client) ID of the Entra application registration to remove. Specify either appId, objectId or name but not multiple.

--objectId [objectId]

Object ID of the Entra application registration to remove. Specify either appId, objectId or name but not multiple.

--name [name]

Name of the Entra application registration to remove. Specify either appId, objectId or name but not multiple.

-f, --force

Don't prompt for confirmation to remove the app.

-h, --help [help]

Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are options, examples, remarks, response, full. Default is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Remarks

For best performance use the objectId option to reference the Entra application registration to remove. If you use appId or name, this command will first need to find the corresponding object ID for that application.

If the command finds multiple Entra application registrations with the specified app name, it will prompt you to disambiguate which app it should use, listing the discovered object IDs.

Examples

Remove the Entra application registration by its app (client) ID.

m365 entra app remove --appId d75be2e1-0204-4f95-857d-51a37cf40be8

Remove the Entra application registration by its object ID.

m365 entra app remove --objectId d75be2e1-0204-4f95-857d-51a37cf40be8

Remove the Entra application registration by its name. Will NOT prompt for confirmation before deleting.

m365 entra app remove --name "My app" --force

Response

The command won't return a response on success.

CTRL + M