Remove-SPOStorageEntity
Tenant properties allow tenant administrators to add properties in the app catalog that can be read by various SharePoint Framework components. Because tenant properties are stored in the tenant app catalog, you must provide the tenant app catalog site collection URL or the site collection app catalog URL in the following cmdlets. This cmdlet is used to remove a value in the property bag.
Syntax
Remove-SPOStorageEntity
[-Site] <SpoSitePipeBind>
[-Key] <string>
[<CommonParameters>]
Description
Use this cmdlet to remove a value within the property bag.
Examples
Example 1
Remove-SPOStorageEntity "https://tenant-name.sharepoint.com/sites/app-catalog" -Key "MyCustomValue"
This example removes the value of my custom value.
Parameters
-Key
The key in the property bag that should be removed.
Type: | String |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Online |
-Site
URL to the tenant or site collection app catalog.
Type: | SpoSitePipeBind |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Online |