Get-ExperimentalFeature

Gets experimental features.

语法

Default (默认值)

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

说明

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.

示例

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

参数

-Name

Name or names of specific experimental features to return.

参数属性

类型:

String[]

默认值:None
支持通配符:False
不显示:False

参数集

(All)
Position:0
必需:False
来自管道的值:True
来自管道的值(按属性名称):False
来自剩余参数的值:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

输入

String

You can pipe a string containing the name of an experimental feature to this cmdlet.

输出

ExperimentalFeature

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