How to get rid of orphaned features in a SharePoint farm using PowerShell?
How to get rid of orphaned features in a SharePoint farm using PowerShell?
Ideally a feature will be scoped to a Farm, WebApplication, Site, or Web, but orphaned features won’t be having a scope. The command to list all orphaned features in a SharePoint farm is as follows…
PowerShell command to list all orphaned features…
Get-SPFeature | ? { $_.Scope -eq $null }
Sample output…
PS C:\windows\system32> Get-SPFeature | ? { $_.Scope -eq $null } DisplayName Id…
View On WordPress










