sharepoint online power user playbook

sharepoint online power user playbook is my first book going to launch very soon. This is the first look received regarding my book sharepoint online. Very excitied and hopeful on this book. Tried my best to include content cosidering every angle in sharepoint real life production support work. Hope you too will like this book once go thorugh it.

SharePoint online power user playbook
SharePoint online power user playbook
SharePoint online power user playbook back page
SharePoint online power user playbook
SharePoint online power user playbook

View all webs and site templates under site collection

View all webs and site templates under site collection

We can get all webs and site templates under site collection by using the below small script. Every site in sharepoiont is using one site template. Sometimes you need to find out the template id of all sharepoint site under one site collection. Follow the powershell command to get website and site template id sharepoint 2019 using powershell. We can use that template id while creating sharepoint site using powershell

$site = Get-SPSite “http://win2016:37344/sites/SPmcse”
foreach ($web in $site.AllWebs){
$web | Select-Object -Property Title,Url,WebTemplate
}
$site.Dispose()
all-webs-and-site-templates-1317x299

website and site template id sharepoint 2019 | #SharePoint2019, #SiteTemplate

website and site template id sharepoint 2019 | #SharePoint2019, #SiteTemplate