Wednesday, July 31, 2013

Uninstall SharePoint 2010 feature using folder name

stsadm -o uninstallfeature -filename "MyFeatureFolder\feature.xml" -force

To list all installed features
Get-SPFeature -Site http://mysitecollection/

before using above command make sure the user has permissions to SP Content and Config Databases

No comments:

c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

 If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...