spo applicationcustomizer remove
Removes an application customizer that is added to a site
Usage
m365 spo applicationcustomizer remove [options]
Options
-u, --webUrl <webUrl>
The url of the site.
-t, --title [title]
The title of the Application Customizer. Specify either
title
,id
orclientSideComponentId
.-i, --id [id]
The id of the Application Customizer. Specify either
title
,id
orclientSideComponentId
.-c, --clientSideComponentId [clientSideComponentId]
The Client Side Component Id (GUID) of the application customizer. Specify either
title
,id
orclientSideComponentId
.-s, --scope [scope]
Scope of the application customizer. Allowed values:
Site
,Web
, andAll
. Defaults toAll
.-f, --force
Don't prompt for confirming removal of the application customizer.
-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 isoptions
.--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]
Output type.
json
,text
,csv
,md
,none
. Defaultjson
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Remarks
If the command finds multiple application customizers with the specified title or clientSideComponentId, it will prompt you to disambiguate which customizer it should remove, listing the discovered IDs.
This command can be used for removing an application customizer added to a specific site. To remove an application customizer that's installed tenant-wide, view our dedicated spo tenant applicationcustomizer remove command.
Examples
Remove an application customizer by id.
m365 spo applicationcustomizer remove --id 14125658-a9bc-4ddf-9c75-1b5767c9a337 --webUrl https://contoso.sharepoint.com/sites/sales
Remove an application customizer by title.
m365 spo applicationcustomizer remove --title "Some customizer" --webUrl https://contoso.sharepoint.com/sites/sales
Remove an application customizer by clientSideComponentId.
m365 spo applicationcustomizer remove --clientSideComponentId 7096cded-b83d-4eab-96f0-df477ed7c0bc --webUrl https://contoso.sharepoint.com/sites/sales
Remove an application customizer by its id without prompting for confirmation.
m365 spo applicationcustomizer remove --id 14125658-a9bc-4ddf-9c75-1b5767c9a337 --webUrl https://contoso.sharepoint.com/sites/sales --force
Remove an application customizer from a site collection by its id without prompting for confirmation.
m365 spo applicationcustomizer remove --id 14125658-a9bc-4ddf-9c75-1b5767c9a337 --webUrl https://contoso.sharepoint.com/sites/sales --force --scope Site
Remove an application customizer from a site by its id without prompting for confirmation.
m365 spo applicationcustomizer remove --id 14125658-a9bc-4ddf-9c75-1b5767c9a337 --webUrl https://contoso.sharepoint.com/sites/sales --force --scope Web
Remarks
This command can be used for removing an application customizer from a specific site. To remove a tenant-wide installed application customizer, view our dedicated spo tenant applicationcustomizer remove command.
Response
The command won't return a response on success.