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
* Added documentation on PnP PowerShell
Added documentation on how to use PnP PowerShell to achieve the same. Also added a screenshot of what you can expect to see if you remove a site collection scoped App Catalog again.
* Adding screenshot on adding a solution to a disabled app catalog
Copy file name to clipboardExpand all lines: docs/general-development/site-collection-app-catalog.md
+17-3Lines changed: 17 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ You can configure and manage site collection app catalogs using the SharePoint O
47
47
> [!NOTE]
48
48
> 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 2017 or newer.
49
49
50
-
Alternatively, you can use the [Office 365 CLI](https://sharepoint.github.io/office365-cli?utm_source=msft_docs&utm_medium=page&utm_campaign=Use+the+site+collection+app+catalog) to manage your SharePoint site collection app catalogs. The Office 365 CLI is a cross-platform command line interface that can be used on any platform, including Windows, MacOS and Linux.
50
+
Alternatively, you can use the [Office 365 CLI](https://sharepoint.github.io/office365-cli?utm_source=msft_docs&utm_medium=page&utm_campaign=Use+the+site+collection+app+catalog) to manage your SharePoint site collection app catalogs. The Office 365 CLI is a cross-platform command line interface that can be used on any platform, including Windows, MacOS and Linux. Using [PnP PowerShell](https://docs.microsoft.com/en-us/powershell/sharepoint/sharepoint-pnp/sharepoint-pnp-cmdlets?view=sharepoint-ps) to [create the app catalog](https://docs.microsoft.com/en-us/powershell/module/sharepoint-pnp/add-pnpsitecollectionappcatalog?view=sharepoint-ps) or [remove the app catalog](https://docs.microsoft.com/en-us/powershell/module/sharepoint-pnp/remove-pnpsitecollectionappcatalog?view=sharepoint-ps) is also an option when using Windows.
51
51
52
52
### Create a site collection app catalog
53
53
@@ -62,7 +62,7 @@ Alternatively, you can use the [Office 365 CLI](https://sharepoint.github.io/off
62
62
> "
63
63
> ```
64
64
>
65
-
> Alternatively, if you are using the Office 365 CLI, you must first connect to your tenant using the `spo connect` command.
65
+
> Alternatively, if you are using the Office 365 CLI, you must first connect to your tenant using the `spo connect` command. With PnP PowerShell you would use `Connect-PnPOnline -Url https://<tenant>-admin.sharepoint.com -UseWebLogin` to set up the connection.
66
66
67
67
To create a site collection app catalog, use the `Add-SPOSiteCollectionAppCatalog` cmdlet passing the site collection where the app catalog should be created as the `-Site` parameter.
Alternatively, use the `spo site appcatalog remove` command if you are using the Office 365 CLI
106
118
107
119
```shell
@@ -110,6 +122,8 @@ spo site appcatalog remove --url https://contoso.sharepoint.com/sites/marketing
110
122
111
123
After executing this script, the **Apps for SharePoint** library will be still visible in your site collection, but you will not be able to deploy or use any solutions deployed in it.
112
124
125
+

0 commit comments