Welcome to MSDN Blogs Sign in | Join | Help

“Server Error: Feature {GUID} is not installed in this farm and cannot be added to this scope”

Sometimes, you may get the above error while trying to activate the installed custom feature in your SharePoint server.

 

Error message says you are trying to install a feature with an invalid scope; there are certain elements that can’t be added to some scopes (Farm, Site, Web, and WebApplication). To get the installed feature, browse to

 

c:\program files\common files\ Microsoft Shared\Web server extensions\12\templates\Features.

 

To get rid of this error message, try to change the ‘Scope’ attribute to either ‘Farm’ or ‘Site’ or ‘Web’ or ‘WebApplication’.

 

Also, try to do that through STSADM.EXE.

 

·         stsadm -o installfeature -filename MyCustomFeature\feature.xml

·         stsadm -o activatefeature -filename MyCustomFeature\feature.xml –url http://Server/Site/

·         iisreset

 

Eg: I am giving a sample feature.xml file which configured for Site level.

 

<?xml version="1.0" encoding="utf-8" ?>

<Feature Id="GUID"

Title="sample title"

Description="sample description"

Version="1.0.0.0"

Scope="Site"

xmlns="http://schemas.microsoft.com/sharepoint/">

<ElementManifests>

<ElementManifest Location="Lightup.xml" />

</ElementManifests>

</Feature>

Published Wednesday, April 02, 2008 2:16 AM by sowmyancs

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# re: “Server Error: Feature {GUID} is not installed in this farm and cannot be added to this scope”

I had a similar problem, but I was able to solve it in a different way. In my feature.xml and workflow.xml file I gave my Title tag a different name from the project name. This was the cause of the problem which I couldn't detect until after several trials. I later changed the Title  to the name of the project and it worked.

Monday, May 04, 2009 6:57 PM by Bilqiis

Leave a Comment

(required) 
required 
(required) 

  
Enter Code Here: Required
 
Page view tracker