1

I am working on SharePoint add-ins to create a remote event receiver. I have generated .app file and need to deploy on my SharePoint site. I followed the following reference to create app catalog for my site.

Reference: Create App Catalog In SharePoint Online

After following all the above steps, I visited to site collections of the SharePoint Admin Center to get app catalog home lisk but app catalog is not showing there. What did I do wrong while following the reference steps?

Abhi Singh
  • 321
  • 3
  • 14

1 Answers1

0

Creating app catalog site collection in admin center does not always mean app catalog will be enabled for all sites (maybe it has been disabled).

Kindly use the below PowerShell script to enable app catalog for a particular site:

$site = Get-SPOSite <Site collection url> 
Add-SPOSiteCollectionAppCatalog -Site $site 
jtate
  • 2,612
  • 7
  • 25
  • 35