Commands › Exchange Online

Get-VivaModuleFeature

Exchange Online ExchangeOnlineManagement Get-*

2.0 or later. For more information, see About the Exchange Online PowerShell module. Use the Get-VivaModuleFeature cmdlet to view the features in a Viva module that support feature access controls. This cmdlet provides details about the features, including the feature identifiers and descriptions.

Quick start script

# Get-VivaModuleFeature — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Run and inspect
Get-VivaModuleFeature -ModuleId <String> | Format-List

# 3. Export for evidence / drift tracking
Get-VivaModuleFeature | Export-Clixml .\VivaModuleFeature-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-VivaModuleFeature -ModuleId <String>
 [[-FeatureId] <String>]
 [-ResultSize <Unlimited>]
 [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-ModuleId String yes The ModuleId parameter specifies the Viva module of the features that you want to view.
-FeatureId String The FeatureId parameter specifies the specific feature in the Viva module that you want to view.
-ResultSize Unlimited This parameter is reserved for internal Microsoft use.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.