SharePoint: Find an SPFeature by DisplayName
SharePoint: Find an SPFeature by DisplayName
I needed to find a particular SPFeature across a SharePoint farm so wrote up this PowerShell script. Sharing with you all this PowerShell script, also this script has some neat formatting code which you could find useful.
Add-PSSnapin *SharePoint* function WriteFeature($features, $tabs) { if($features -ne $null) { ForEach($feature in $Features) { Write-Host $("`t" * $tabs)"-> Found…
View On WordPress















