The site template requires that the feature be installed in the farm or site collection

I inherited a SharePoint implementation.  There is a Workflow that runs when an item in a List is created.  The old developer created some Actions using Visual Studio.  The Workflow is configurable using SharePoint Designer.  Specifically,
there is a condition/action that creates a site using a ProjectSiteTemplate variable that is set through SPD.  The value in there now is a {guid}#ProjectSiteTemplate.  Workflow is failing with following message:  "Failed to create site
at http://site/rpm/11.  SPException  The site template requires that the feature {guid} be installed in the farm or site collection".
How can I find out what Feature is missing?  Specifically, I am looking for a name.  That would help be debug or find out what I need to active or deploy.
Thanks for any tips provided.

Get-SPFeature | where { $_.id -eq "yourGUID" }
I.e. something like:
Get-SPFeature | where { $_.id -eq "f0deabbb-b0f6-46ba-8e16-ff3b44461aeb" }
To see all of the installed features:
Get-SPFeature | Sort Displaynames
You could also search the feature directory on the server to look for the GUID.
C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\FEATURES
Mike Smith TechTrainingNotes.blogspot.com
my SP customization book

Similar Messages

Maybe you are looking for