Unable to install corporate font in powerpoint / sharepoint online.

Akshay Naringrekar 0 Reputation points
2024-04-24T09:38:26.8366667+00:00

We are trying to follow the link

https://learn.microsoft.com/en-us/sharepoint/support-for-organization-fonts-in-powerpoint-for-the-web

while running the powershell below, we are getting error:

Set-SPOCustomFontCatalog -FontFolder <Local Font Folder Location> -LibraryUrl <Document Library SharePoint URL>

The library is not a valid font organization asset library. Though we have verified the library by get-SPOOrgAssetsLibrary "OrgAssetType" as "OfficeFontLibrary "

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,684 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Haoyan Xue_MSFT 19,871 Reputation points Microsoft Vendor
    2024-04-25T02:58:30.9566667+00:00

    Hi @Akshay Naringrekar ,

    OrgAssetType: Indicates the type of content in this library. The Organization Asset Library currently supported values are "ImageDocumentLibrary" and "OfficeTemplateLibrary". "OfficeFontLibrary" is not supported, so this library is not a valid library of font organization assets.

    ImageDocumentLibrary is the default OrgAssetType and is best used for images. You can access the contents of this library from any site or page in the SharePoint filepicker. OfficeTemplateLibrary is the suggested type for Office files and will show up in the UI of all Office desktop apps and Office online in the templates section.

    You can se your existing site for Organization Asset Libraries. Use Microsoft PowerShell to specify a library as an organization assets library.

    Example:

    Add-SPOOrgAssetsLibrary -LibraryURL https://yourdomain.sharepoint.com/sites/yoursite/Templates -ThumbnailURL https://yourdomain.sharepoint.com/sites/yoursite/Templates/contosologo.jpg -OrgAssetType OfficeTemplateLibrary
    
    • LibraryURL is the absolute URL of the library to be designated as a central location for organization assets.
    • ThumbnailURL is the URL for the image file that you want to appear in the card's background in the file picker; this image must be on the same site as the library. The name publicly displayed for the library will be the organization's name.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.