SharePoint 2019 feature id feature using powershell

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.

Advertisements

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
SharePoint 2019 feature id
SharePoint 2019 feature id
Advertisements

Get SharePoint 2019 all feature id scope farm

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

Get SharePoint 2019 all feature id scope web application

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

Get SharePoint 2019 all feature id scope site

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

Get SharePoint 2019 all feature id scope web

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

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
SharePoint 2019 feature id of all site with in site collection
Advertisements

Get SharePoint 2019 feature id of site

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

Get feature id of one feature

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

enable specific site feature id

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

disable specific site feature id

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

SharePoint 2019 feature id feature list using powershell | #SharePoint2019, #Powershell

Advertisements



Categories: powershell command, SharePoint 2019, sharepoint features

Tags: , , , , , , , , , , , , , , , , ,

Discover more from SharePointTechnicalSupport

Subscribe now to keep reading and get access to the full archive.

Continue reading