509.949.2162 jeremy@bondbyte.com

Blog

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){...

SharePoint Form Tags Content Editor and Custom WebParts

SharePoint Form Tags Content Editor and Custom WebParts

Ever try to place a Form in a SharePoint WebPart or Content Editor WebPart. Doesn't work real hot. In SharePoint 2010 I managed to strip a master page to its bare bones and override some JavaScript Methods and was able to nest a form tag. SharePoint 2013, a different...