A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
Based on the information you provided, I understand that you want to publish a custom PowerPoint template centrally so that all users in your Microsoft 365 organization can access the same approved company template.
The recommended approach is to create a SharePoint Organization Assets Library and register it as an Office Template Library. This provides a centrally managed template gallery in PowerPoint, rather than requiring you to copy the template manually to every user’s device. Microsoft supports organizational templates in PowerPoint for Windows, Mac, and the web.
Please ref: Create an organization assets library
-Deployment steps
- Prepare the company template and save it in the PowerPoint Template (.potx) format.
- Create or select a SharePoint Online site that will host your organization’s templates.
- Create a document library on that site, for example, Corporate Templates, and upload the
.potxfile to it. - Ensure that company users have at least Read permission to the relevant SharePoint site and template library.
- Install or update the SharePoint Online Management Shell, connect as a SharePoint Administrator, and register the library by running:
Connect-SPOService -Url https://<tenant>-admin.sharepoint.com
Add-SPOOrgAssetsLibrary `
-LibraryUrl "https://<tenant>.sharepoint.com/sites/<site>/<library>" `
-OrgAssetType OfficeTemplateLibrary
The Add-SPOOrgAssetsLibrary cmdlet designates the SharePoint library as a central organization assets location, and OfficeTemplateLibrary is the asset type used for Office templates.
-Where users can find the template
After the library becomes available:
- PowerPoint for Windows: Open PowerPoint and select New, or select File > New, then open the folder displaying the organization’s name.
- PowerPoint for Mac: Select New or File > New from Template, then open the organization’s template folder.
- PowerPoint for the web: Open PowerPoint, select File > New > Browse templates, and then select the company name.
-Requirements and important notes
- Microsoft states that the template file must use the
.potxformat. - PowerPoint desktop users need Microsoft 365 Apps version 2002 or later.
- PowerPoint for the web requires eligible Office 365 E3 or E5 licensing for the Organization Assets Library experience.
- Microsoft notes that it can take up to 24 hours for the library to appear in desktop Office applications.
- A tenant can designate multiple organization assets libraries, but the registered libraries must be located on the same SharePoint site.
I recommend testing the deployment with a small group first and verifying that the template appears under the organization’s template section before announcing it company-wide.
I hope this helps. Please let us know if you encounter an error when running Add-SPOOrgAssetsLibrary or if the template does not appear after the library has been registered.