As I keep having to figure this out every time I come to do it I’m leaving it here for reference.
To find a SharePoint feature when you only know part of the name of it the following command can be used:
1 |
Get-SPFeature | where { $_.DisplayName -like "*something*" } | format-list -property displayname |