Installing WebApplication scoped feature through code - SharePoint

205 Views Asked by At

I've a WebApplication scoped feature which I need to install through code.

In short, I need to perform

stsadm -o installfeature -name MyFeature

through code. Any ideas?

2

There are 2 best solutions below

0
On BEST ANSWER

Try this code:

public void InstallFeature(string name, bool force)
{
  string relativePath = name + @"\feature.xml";
  Microsoft.SharePoint.Administration.SPFarm.Local.FeatureDefinitions.Add(relativePath, Guid.Empty, force);
}
0
On

Have a look at the code for the SharePoint Solution Installer on Codeplex.