Commands › SharePoint Online
Get-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 get a value in the property bag.
Quick start script
# Get-SPOStorageEntity — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-SPOService -Url https://$org-admin.sharepoint.com
# 2. Run and inspect
Get-SPOStorageEntity -Key <String> -Site <SpoSitePipeBind> | Format-List
# 3. Export for evidence / drift tracking
Get-SPOStorageEntity | Export-Clixml .\SPOStorageEntity-$(Get-Date -Format yyyyMMdd).xml
Syntax
Get-SPOStorageEntity [-Site] <SpoSitePipeBind> [-Key] <String> [<CommonParameters>]
Parameters (2)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.