Sharepoint Online Organization assets cheatsheet
This is oldie but goldie. From time to time I’m referring to this documentation when implementing organization assets or consulting a co-worker about it.
Good to know
- For the organization assets library to appear to a user in PowerPoint on the web, the user must be assigned a license to Office 365 E3 or E5. Users who use the Word, Excel, or PowerPoint desktop app also need Microsoft 365 Apps Version 2002 or later. (The organization assets library is not available in Word on the web or Excel on the web.)
- Allow up to 24 hours for the organization assets library to appear to a user in the desktop apps.
- Users need at least read permissions on the root site for your organization for the organization assets library to appear in the desktop apps.
- All organization asset libraries must be on the same site.
- You need to have
Sharepoint Online Management Shell
installed - You need to have
Global admin
ORSharepoint admin
role - Adding an organization assets library will enable a content delivery network (CDN) for your organization to provide fast and reliable performance for shared assets. You’ll be prompted to enable a CDN for each organization asset library you add.
Setup
- Create new site collection (Communication site) named for example
assets
which creates site collection.../sites/assets
- Create new document library called
Templates
toassets
- Create new document library called
Pictures
toassets
- Modify
asset
site permissions- Add
Everyone except external users
group to site visitors group - Add relevant users to owners / members group
- Users who are managing Pictures & Templates
- Add
- Connect to Sharepoint Online Management Shell and run following commands
- Pictures:
Add-SPOOrgAssetsLibrary -LibraryUrl <URL> -OrgAssetType ImageDocumentLibrary -CdnType Private
DONT FORGET TO UPDATELibraryUrl
- Templates:
Add-SPOOrgAssetsLibrary -LibraryUrl <URL> -OrgAssetType OfficeTemplateLibrary -CdnType Private
DONT FORGET TO UPDATELibraryUrl
- Pictures:
- Upload files to
Template
andPictures
folder
For more information about command options and CDN check sources.
Sources:
Command docs: Add-SPOOrgAssetsLibrary (Microsoft.Online.SharePoint.PowerShell) | Microsoft Learn
Org asset docs: Create an organization assets library - SharePoint in Microsoft 365 | Microsoft Learn
This post is licensed under CC BY 4.0 by the author.