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)
-
Code Review :- General 1. Remove the commented code 2. Variable name should not be contain "_". 3. Query should be in separat...
-
Issue : Recently, we had a requirement to sync the calendar between shared mailbox outlook and SharePoint Calendar list. We have created 2 f...
-
Issue: Recently, we were developing a SPFx webpart in which we needed to open a dialog. For that we decide to use Office Fabric UI Dialog co...
No comments:
Post a Comment