509.949.2162 jeremy@bondbyte.com

Blog

SharePoint – Save Site As Template Missing ?

SharePoint – Save Site As Template Missing ?

Site Templates don't work on publishing sites, there are many reasons for this, master pages, page layouts, etc. The stuff doesn't export / Import well. Some times you need just need to get to the site template for development reasons and what not. This is stolen from...

Powershell – Get Site Template ID

Powershell – Get Site Template ID

The following PowerShell script will return Template Name and the Internal ID. $url = “http://sp2013/” $site= new-Object Microsoft.SharePoint.SPSite($url ) $loc= [System.Int32]::Parse(1033) $templates= $site.GetWebTemplates($loc) foreach ($child in $templates){...