There are two solution either in feature set force install option or delete orphaned features using following powershell commands:
Get-SPFeature
| ? {$_.Scope -eq $null}
$feature
= Get-SPFeature | ? {$_.DisplayName -eq "FeatureToBeDeleted"}
$feature.Delete()
0 comments:
Post a Comment