You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/general-development/site-collection-app-catalog.md
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,6 @@ In site collection app catalogs, just as in tenant app catalog, you can deploy b
34
34
SharePoint Framework solution packages that contain assets, can be deployed to site collection app catalogs. Included assets will be deployed to a preconfigured document library in the same site collection as where the site collection app catalog is located. If the Office 365 Public CDN is configured, assets will be served from the CDN. Otherwise, assets will be served directly from the document library.
35
35
36
36
> [!NOTE]
37
-
>
38
37
> A bugfix for correctly supporting assets packaging in site collection app catalogs is currently being rolled out and should be available on all tenants before the end of the calendar year 2017.
39
38
40
39
### Tenant-scoped deployment
@@ -52,13 +51,11 @@ At this moment, it's not possible to use the recently released ALM APIs to manag
52
51
You can configure and manage site collection app catalogs using the SharePoint Online Management Shell.
53
52
54
53
> [!NOTE]
55
-
>
56
54
> Before you can manage site collection app catalogs in your tenant, ensure that you have installed [SharePoint Online Management Shell](https://www.microsoft.com/en-us/download/details.aspx?id=35588) from November '17 or newer.
57
55
58
56
### Create a site collection app catalog
59
57
60
58
> [!NOTE]
61
-
>
62
59
> Before running the following script, connect to your SharePoint Online tenant using the `Connect-SPOService` cmdlet. Also ensure, that you have a tenant app catalog created in your tenant. If you don't, the cmdlet will fail with the following error:
63
60
> ```text
64
61
> Cannot invoke method or retrieve property from null object. Object returned by the
@@ -85,13 +82,11 @@ After executing this script, the **Apps for SharePoint** library will be added t
85
82
### Disable the site collection app catalog
86
83
87
84
> [!NOTE]
88
-
>
89
85
> Before running the following script, connect to your SharePoint Online tenant using the `Connect-SPOService` cmdlet.
90
86
91
87
To disable the site collection app catalog in your site collection, use the `Remove-SPOSiteCollectionAppCatalog` cmdlet passing the site collection where the app catalog should be disabled as the `-Site` parameter. Alternatively, if you have your site collection's ID, you can use the `Remove-SPOSiteCollectionAppCatalogById` cmdlet instead.
92
88
93
89
> [!NOTE]
94
-
>
95
90
> Despite the naming, the `Remove-SPOSiteCollectionAppCatalog` and `Remove-SPOSiteCollectionAppCatalogById` cmdlets don't remove the site collection app catalog from the site collection. Instead, they disable it so that it's not possible to deploy or use any solutions deployed in it.
96
91
97
92
```powershell
@@ -114,3 +109,7 @@ Currently, it's not possible to list all site collections in the tenant that hav
114
109
### Security
115
110
116
111
Before deploying solutions to site collection app catalogs, site collection administrators should verify that these solutions meet organizational policies. Although solutions installed in site collection app catalogs can only be used in these particular site collections, they can potentially access resources from other sites in the tenant so administrators should ensure that the solutions they are about to deploy work as intended.
112
+
113
+
## See also
114
+
115
+
-[Manage the Site Collection App Catalog](https://support.office.com/en-us/article/Manage-the-Site-Collection-App-Catalog-928b9b61-a9de-4563-a7d1-6231aa9d4d19)
0 commit comments