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
{{ message }}
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
I am trying to use Install-PnPApp with a simple Hello web part sppkg
It's installed to site but when I try to add the web part to a page is not visible.
Installing from tenant app catalog works fine - I can see the web part and I can add it to a page
Commands used
#Parameters
$SiteURL = "https://tenant.sharepoint.com/sites/modernteam2"
$AppName = "helloworld-webpart-client-side-solution"
#Connect to SharePoint Online App Catalog site
Connect-PnPOnline -Url $SiteURL -UseWebLogin
#Get the App from App Catalog
$App = Get-PnPApp -Scope Tenant | Where {$_.Title -eq $AppName}
#Install App to the Site
Install-PnPApp -Identity $App.Id -Scope Site
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am trying to use Install-PnPApp with a simple Hello web part sppkg
It's installed to site but when I try to add the web part to a page is not visible.
Installing from tenant app catalog works fine - I can see the web part and I can add it to a page
Commands used
#Parameters
$SiteURL = "https://tenant.sharepoint.com/sites/modernteam2"
$AppName = "helloworld-webpart-client-side-solution"
#Connect to SharePoint Online App Catalog site
Connect-PnPOnline -Url $SiteURL -UseWebLogin
#Get the App from App Catalog
$App = Get-PnPApp -Scope Tenant | Where {$_.Title -eq $AppName}
#Install App to the Site
Install-PnPApp -Identity $App.Id -Scope Site
Beta Was this translation helpful? Give feedback.
All reactions