Enable Site level App catalog in SharePoint Using PNP PowerShell

·

1 min read

Enable Site level App catalog in SharePoint Using PNP PowerShell

Prerequisite Permissions

  • To Enable app catalog for the Specific site requires tenant level administrator access.
  • This is a one-time activity to be done by tenant admins.

Please note: If you do not have Office 365 administer or SharePoint administer permissions, then you cannot create the App Catalog.

Using PNP PowerShell

Steps to follow

  1. Connect to Tenant
    Connect-SPOService -Url https://jaguare5-admin.sharepoint.com
    
    Above command will
  2. Connect to the specific site (Site where you want to create app catalog)

    $site = Get-SPOSite https://jaguare5.sharepoint.com/sites/JaguarBlog
    
  3. Create site collection app catalog

    Add-SPOSiteCollectionAppCatalog -Site $site
    

    image.png

  4. Now go to the site, you'll notice the app for SharePoint which can be used to deploy the app. image.png