A blog about SharePoint Technical Solutions
That does not bring the content types to the spsite.
It could be the compatibility level of SQL.If you upgraded from SQL 2012 to SQL 2014 you could do this:get-spfeature -identity reportserver # if compatability is 14 this might be the problem/it should be 15install-spfeature -path reportserver -compatibilitylevel 15deactivate feature in site then$site = get-spsite “http://”Enable-SPFeature -Identity ReportServer -Url $site.url
That does not bring the content types to the spsite.
ReplyDeleteIt could be the compatibility level of SQL.
ReplyDeleteIf you upgraded from SQL 2012 to SQL 2014 you could do this:
get-spfeature -identity reportserver # if compatability is 14 this might be the problem/it should be 15
install-spfeature -path reportserver -compatibilitylevel 15
deactivate feature in site then
$site = get-spsite “http://”
Enable-SPFeature -Identity ReportServer -Url $site.url