Use PowerShell to enable the 'ParserEnabled' property for the web site
$web = Get-SPWeb <url of web>
$web.ParserEnabled = $true
$web.Update()
#listtemplate missing
$web = Get-SPWeb <url of web>
$web.ParserEnabled = $true
$web.Update()
#listtemplate missing
No comments:
Post a Comment