Default site templates id sharepoint online using powershell

SharePoint online changes are done and much improvements in sharepoint online site templates are in progress. You will find new modern site templates, communication site templates are intrioduced. In this chapter we will disucss how to find Default site templates id sharepoint online using powershell. Follow step by step process to get Default site templates id sharepoint online list usign powershell.

Advertisements
  • Run “SharePoint Online Management Shell” as an administrator.
  • Follow the steps mentioned in video to Connect SharePoint Online Using Powershell step by step as below.
connect sharepoint online using powershell
Advertisements

Run powershell command as below to get default site templates id lists

Get-SPOWebTemplate
Default site templates id sharepoint online
Default site templates id sharepoint online
Advertisements

You can follow the video that would help you better.

Default site templates id sharepoint online | #SharePoint2019, #SiteTemplate

Default site templates id sharepoint online | #SharePoint2019, #SiteTemplate
Advertisements

You can export the Default site templates id sharepoint online list using below command

Get-SPOWebTemplate | Export-CSV "c:\Sitetemplate.csv"
NameLocaleIdCompatibilityLevelTitleDisplayCategory
STS#3103315Team site (no Office 365 group)Collaboration
STS#0103315Team site (classic experience)Collaboration
BLOG#0103315BlogCollaboration
BDR#0103315Document CenterEnterprise
DEV#0103315Developer SiteCollaboration
OFFILE#1103315Records CenterEnterprise
EHS#1103315Team Site – SharePoint Online configurationEnterprise
BICenterSite#0103315Business Intelligence CenterEnterprise
SRCHCEN#0103315Enterprise Search CenterEnterprise
BLANKINTERNETCONTAINER#0103315Publishing PortalPublishing
ENTERWIKI#0103315Enterprise WikiPublishing
PROJECTSITE#0103315Project SiteCollaboration
PRODUCTCATALOG#0103315Product CatalogPublishing
COMMUNITY#0103315Community SiteCollaboration
COMMUNITYPORTAL#0103315Community PortalEnterprise
SITEPAGEPUBLISHING#0103315Communication sitePublishing
SRCHCENTERLITE#0103315Basic Search CenterEnterprise
visprus#0103315Visio Process RepositoryEnterprise
Advertisements

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