In this article , Enable save as template page
#Get site url
$web = Get-SPWeb http://peakfinders/$web.AllProperties["SaveSiteAsTemplateEnabled"] = "true"$web.Update() Now you can able access the save site as template :
/ _layouts/savetmpl.as...
Showing posts with label Save as Template. Show all posts
Showing posts with label Save as Template. Show all posts
Saturday, February 13, 2016
Wednesday, May 20, 2015
20
May
$web = Get-SPWeb "http://spserver/sites/Raghu/"
$web.AllProperties["SaveSiteAsTemplateEnabled"] = "true"
$web.Update...
Thursday, February 12, 2015
12
Feb
when we document library
[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Administration")
$docSize = 5000000000
$webservice = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$webservice.MaxTemplateDocumentSize...