#Get-SPOFeature Returns all activated or a specific activated feature ##Syntax
Get-SPOFeature [-Scope <FeatureScope>] [-Web <WebPipeBind>] [-Identity <FeaturePipeBind>]##Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Identity | FeaturePipeBind | False | |
| Scope | FeatureScope | False | The scope of the feature. Defaults to Web. |
| Web | WebPipeBind | False | The web to apply the command to. Omit this parameter to use the current web. |
| ##Examples |
###Example 1
PS:> Get-SPOFeatureThis will return all activated web scoped features
###Example 2
PS:> Get-SPOFeature -Scope SiteThis will return all activated site scoped features
###Example 3
PS:> Get-SPOFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22This will return a specific activated web scoped feature
###Example 4
PS:> Get-SPOFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope SiteThis will return a specific activated site scoped feature