Replies: 2 comments
-
@rachoksh - Are Site scripts & Site designs not what you're after? |
Beta Was this translation helpful? Give feedback.
0 replies
-
@rachoksh - what you are looking is site templates and scripts. You can read more about it here: You can call PnP Provisioning from the site scripts. The provisioning needs to be run on a separate hosted environment or server. You can consider Az function or runbooks or something else. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
Problem is currently there is no way to publish a custom SPO modern template to the tenant.
I am looking for a way to use the .pnp package from the below command and use that to publish a custom SPO site template to the Tenant that appears under the "From your Organization" in the UI for end users to be able to choose an Organization template and apply. This would include lists, libraries, navigation, site logo as well as client-side custom pages.
Get-PnPSiteTemplate -out template.pnp -IncludeAllClientSidePages -PersistBrandingFiles
Describe the solution you'd like
Solution could be something like below two commands -
Import-PnPTenantTemplate -Path ./template.pnp
&
Publish-PnPTenantTemplate -Identity "Template Name" -Scope Organization
Describe alternatives you've considered
Current solution is for Admins to use this - Invoke-PnPSiteTemplate .\template.pnp.
End users cannot do this as they don't know PnP PS.
Publishing to the tenant allows end users to pick from any of the published organization templates in SPO.
Beta Was this translation helpful? Give feedback.
All reactions