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
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.
karkyp
Sep 16, 2022Copper Contributor
Hi, Thank you I will try now