Monday, April 20, 2015

The content type with Id 0x010100C3676CDFA2F24E1D949A8BF2B06F6B8B defined in feature {e8389ec7-70fd-4179-a1c4-6fcb4342d7a0} was found in the current site collection or in a sub site

Solution:

Enable-SPFeature -Identity E8389EC7-70FD-4179-A1C4-6FCB4342D7A0 -Url BIsiteurl -force

Enjoy SharePoint!!!

2 comments:

  1. That does not bring the content types to the spsite.

    ReplyDelete
  2. 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 15

    install-spfeature -path reportserver -compatibilitylevel 15

    deactivate feature in site then

    $site = get-spsite “http://”
    Enable-SPFeature -Identity ReportServer -Url $site.url

    ReplyDelete