Tuesday, July 23, 2013

Find SharePoint Feature Name by GUID

Ever need to find a SharePoint feature by its GUID? 

Try this query via SQL Server Management Studio:
USE <InsertContentDBNameHere>
SELECT FeatureId,FeatureTitle
FROM FeatureTracking
WHERE FeatureId = '<insertGUID>'
How about just listing Features you have on the farm?

Try this query via SQL Server Management Studio:
USE <InsertContentDBNameHere>SELECT Features.FeatureId, FeatureTracking.FeatureTitle
FROM Features, FeatureTracking
WHERE Features.FeatureId = FeatureTracking.FeatureID;

1 comment: