SharePoint Online: How to Find App Catalog URL?
Requirement: Get App Catalog URL in SharePoint Online
SharePoint Online: Find the URL of App Catalog
If you are looking for the App Catalog URL in SharePoint Online, it can be a little tricky to find. Perhaps you want to install an app to the SharePoint Online App Catalog, but don’t know the URL? This blog post will show you where to locate the App Catalog in your SharePoint environment.
So, How to get the tenant app catalog location in SharePoint Online? Well, To find the location of the app catalog site,
- Navigate to your Tenant Administration site, usually located at https://<yourtenant>-admin.sharepoint.com
- Click on “More Features” in the left navigation >> Click on the “Open” button under the Apps section
- Click on the “App Catalog” link on the Apps page.
- You will be redirected to your tenant app catalog site if it’s already created. Otherwise, you’ll be given the option to create an app catalog.
Here is my other post on creating an app catalog in SharePoint Online: How to Create an App Catalog Site in SharePoint Online?
SharePoint Online: Get App Catalog Location using PowerShell
To find the app catalog URL in SharePoint Online, use this PnP PowerShell script
#SharePoint Online Admin Center URL
$AdminSiteURL="https://crescent-admin.sharepoint.com"
#Connect to SharePoint Online Admin Center
Connect-PnPOnline -Url $AdminSiteURL -Credentials (Get-Credential)
#Get sharepoint online app catalog location
Get-PnPTenantAppCatalogUrl