Forum Discussion
karkyp
Sep 16, 2022Copper Contributor
Apps for sharepoint(In APP catalog) not showing in sharepoint
Hi, I upload SPFx package in sharepoint catalog, after upload package it showing blank. Please help me to sort-out this issue. Before Uploading Package Image 1 After Uploadin...
NanddeepNachan
Learn Expert
Hi karkyp
Doesn't seems to be anything wrong.
May be you can remove each app one by one and try again. Don't forge to download the apps as a backup.
karkyp
Sep 16, 2022Copper Contributor
Hi, How to remove the app because sites/Apps/AppCatalog/Forms/AllItems.aspx showing blank. Its any other way to remove app.
- NanddeepNachanSep 16, 2022Learn Expert
Hi karkyp
You can use PnP PowerShell as follows:
$AppCatalogSiteURL = "Your app catalog site URL" $AppName = "Name of your app" Connect-PnPOnline -Url $AppCatalogSiteURL -Interactive $App = Get-PnPApp -Scope Tenant | Where {$_.Title -eq $AppName} #Remove an App from App Catalog Site Remove-PnPApp -Identity $App.Id
If you don't remember your app names, use Get-PnPApp to list all apps first.
- karkypSep 16, 2022Copper ContributorHi, Thank you I will try now