Deploy a feature to a single sharepoint site / How to select a single sharepoint site?

It depends on where you want to execute your code. If you have a sharepoint context then you can use SPWeb oWebsite = SPContext.Current. Web; oWebsite.Features.

Add(new Guid({guid of feature})) or using(SPWeb oWebsite = SPContext.Current.Site. OpenWeb("Website_URL")) { oWebsite.Features. Add(new Guid({guid of feature})); } If you were using a console app for example, and didn't have an SPContext you could use using(SPSite oSiteCollection = new SPSite("http://Server_Name")) { using(SPWeb oWebsite = oSiteCollection.

OpenWeb("Website_URL")) { oWebsite.Features. Add(new Guid({guid of feature})); } } There are lots of other ways to get hold of an SPWeb object, but it depends on what information you have about the site (name, url, position in the heirarchy) If you want to activate a feature that is scoped against a Site Collection or Web Application, then you can get hold of the SPSite or SPWebApplication in a similar manner SPSite: SPContext.Current. Site or SPSite oSiteCollection = new SPSite("Absolute_URL") SPWebApplication: SPContext.Current.Site.

WebApplication or SPWebApplication. Lookup(new Uri("http://MyServer:989")) and on either of these objects, you can call object.Features. Add(...)) In the same way as the above code Note: The scope of the feature is specified in the feature.

Xml, see the following for details: http://msdn.microsoft.com/en-us/library/ms436075.aspx.

It depends on where you want to execute your code. If you have a sharepoint context then you can use SPWeb oWebsite = SPContext.Current. Web; oWebsite.Features.

Add(new Guid({guid of feature})); or using(SPWeb oWebsite = SPContext.Current.Site. OpenWeb("Website_URL")) { oWebsite.Features. Add(new Guid({guid of feature})); } If you were using a console app for example, and didn't have an SPContext you could use using(SPSite oSiteCollection = new SPSite("http://Server_Name")) { using(SPWeb oWebsite = oSiteCollection.

OpenWeb("Website_URL")) { oWebsite.Features. Add(new Guid({guid of feature})); } } There are lots of other ways to get hold of an SPWeb object, but it depends on what information you have about the site (name, url, position in the heirarchy) If you want to activate a feature that is scoped against a Site Collection or Web Application, then you can get hold of the SPSite or SPWebApplication in a similar manner. SPSite: SPContext.Current.

Site or SPSite oSiteCollection = new SPSite("Absolute_URL") SPWebApplication: SPContext.Current.Site. WebApplication or SPWebApplication. Lookup(new Uri("http://MyServer:989")); and on either of these objects, you can call object.Features.

Add(...)) In the same way as the above code. Note: The scope of the feature is specified in the feature. Xml, see the following for details: http://msdn.microsoft.com/en-us/library/ms436075.aspx.

– Nathan Oct 28 '09 at 15:16 Can you clarify what the scope of the feature is (Web Application, Site Collection or Site). I thought you were trying to deploy to a single site, but if you wanted to deploy to the WebApp, I can find some code for that – AlexWilson Oct 29 '09 at 8:29 I added some examples for activating a solution scoped to both a Web application and a Site collection – AlexWilson Oct 29 '09 at 8:44 Thanks great thanks Alex, i've setup two different versions with a check that I hope will check each feature and install to the correct place. – Nathan Oct 29 '09 at 11:34.

For Web scoped features use: using (SPWeb currentSite = SPContext.Current. Web) { currentSite.WebFeatures. Add(new Guid("{GUID}")); } For Site scoped features use: using (SPWeb currentSite = SPContext.Current.

Web) { currentSite.Features. Add(new Guid("{GUID}")); }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions