Share via


Get-ExperimentalFeature

Gets experimental features.

Syntax

Get-ExperimentalFeature
   [[-Name] <String[]>]
   [<CommonParameters>]

Description

The Get-ExperimentalFeature cmdlet returns all experimental features discovered by PowerShell. Experimental features can come from modules or the PowerShell engine. Experimental features allow users to safely test new features and provide feedback (typically via GitHub) before the design is considered complete and any changes can become a breaking change.

Examples

Example 1

Gets the list of currently registered experimental features and their current state.

Get-ExperimentalFeature

Name                         Enabled Source      Description
----                         ------- ------      -----------
PSImplicitRemotingBatching   False PSEngine      Batch implicit remoting proxy commands to improve performance

Parameters

-Name

Name or names of specific experimental features to return.

Type:String[]
Position:0
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

Inputs

String[]

Name or names of experimental features to return.

Outputs

ExperimentalFeature

Returns instances that match the requested names or all experimental features if no name is specified.