SharePoint 2019 feature id and feature list you can find out using powershell. You will understand basic powershell commands related to Get-SPFeature so as to get sharepoint feature details and features related ot this sharepoint feature id. Follow step by step procesure to find out how to get sharepoint 2019 features id and features.
Get all sharepoint 2019 feature ids using the command below. Click here to download all feature ids in excel format for reference.
Get-SPFeature | Format-Table -AutoSize

Get SharePoint 2019 all feature id scope farm
Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "FARM"} | Format-Table -AutoSize

Get SharePoint 2019 all feature id scope web application
Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "WEBAPPLICATION"} | Format-Table -AutoSize

Get SharePoint 2019 all feature id scope site
Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "SITE"} | Format-Table -AutoSize

Get SharePoint 2019 all feature id scope web
Get-SPFeature -Limit ALL | Where-Object {$_.Scope -eq "WEB"} | Format-Table -AutoSize

Get SharePoint 2019 feature id of all site with in site collection
Get-SPSite http://win-56r9d2tbfob:39760 | Get-SPWeb -Limit ALL |%{ Get-SPFeature -Web $_ } | Select DisplayName,ID -Unique | Format-Table -AutoSize

Get SharePoint 2019 feature id of site
Get-SPFeature -Site http://win-56r9d2tbfob:39760

Get feature id of one feature
Get-SPFeature -Site http://win-56r9d2tbfob:39760

enable specific site feature id
Enable-SPFeature -Identity 7c637b23-06c4-472d-9a9a-7c175762c5c4 -Url http://win-56r9d2tbfob:39760

disable specific site feature id
Disable-SPFeature -Identity 7c637b23-06c4-472d-9a9a-7c175762c5c4 -Url http://win-56r9d2tbfob:39760

SharePoint 2019 feature id feature list using powershell | #SharePoint2019, #Powershell
Categories: powershell command, SharePoint 2019, sharepoint features
You must be logged in to post a comment.