Sometimes we need to find the GUID of save site template.
Open Power shell management shell in administrator mode.
here is the power shell script that provide you the functionality. pate it.
$url = "http://localhost:mysite/"
$site= new-Object Microsoft.SharePoint.SPSite($url )
$loc= [System.Int32]::Parse(1033)
$templates= $site.GetWebTemplates($loc)
foreach ($child in $templates){ write-host $child.Name " " $child.Title}
click Enter. And you will get the list of site template with the GUID.
Enjoy
Subscribe to:
Post Comments (Atom)
-
While working with SharePoint / JavaScript modal pop up you might encounter error "cannot read property 'showmodaldialog' of un...
-
Scenario: You have followed all the specified TechNet requirements/permissions in setting up SharePoint 2013 and Workflow Manager 1.o far...
-
Problem : I want to create SharePoint 2013 workflow in SharePoint Designer. But it is not showing SharePoint 2013 workflow option. So we ne...

No comments:
Post a Comment