Introduction: Site Provisioning Or Site Templating is a developer-friendly feature of SharePoint, using Site Templating SharePoint Allows you to create a replica of its Site Collection and can use to create the same for the departmental sites or the other sites. It is easy to create and smooth to apply, requiring a single-time operation. It has some pre-requisite to use it 1. Knowledge of PowerShell Scripts. 2. Knowledge of PnP Module. 3. Must have SharePoint Online Administrator credential. Please follow bellow steps. Step 1: Open PowerShell in the Administrator mode Step- 2 Run the below commands, it will install the PnP module. Install-Module -Name "PnP.PowerShell" Step- 3 Run the below command in PowerShell Connect-SPOService -Url https://rb500-admin.sharepoint.com After running the above command, it will show you the Login Promote. So, you must put your SharePoint admin credentials, for more details refer to the below screen. Once you enter the correct credentials,
1. Which tool we can use to generate a SharePoint Framework (SPFx) solution? Developer can use Yeoman to generate SharePoint Framework (SPFx) solution, it is a client-side scaffolding open-source tool to help in web-based development. 2. How developer can ensure that the solution deployed was immediately available to all site collections in SPFx? To ensure the availability of the deployed solution on all the site collections developer has to configure skipFeatureDeployment: true in package-solution.json { "solution" : { "name" : "theultimateresources-deployment-client-side-solution" , "id" : "as3feca4-4j89-47f1-a0e2-78de8890e5hy" , "version" : "2.0.0.0" , "skipFeatureDeployment" : true }, "paths" : { "zippedPackage" : "solution/theultimateresources-deploy-true.sppkg" } }