File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -393,8 +393,19 @@ will be updated to incorporate this metadata to the resulted `PSModuleInfo` obje
393
393
394
394
#### Get-ExperimentalFeature
395
395
396
- A new cmdlet ` Get-ExperimentalFeature ` will be added to return all available experimental features of a PowerShell session.
396
+ A new cmdlet ` Get-ExperimentalFeature ` will be added to return all experimental features of a PowerShell session.
397
397
The returned experimental features are represented by the type [ ` ExperimentalFeature ` ] ( #powerShell-engine-experimental-feature ) .
398
+ The syntax signature of the cmdlet will look as follows:
399
+
400
+ ``` powershell
401
+ Get-ExperimentalFeature [-Enabled] [-Disabled] [<CommonParameters>]
402
+
403
+ Get-ExperimentalFeature [-Name] <string[]> [<CommonParameters>]
404
+ ```
405
+
406
+ When ` -Enabled ` is specified, only enabled experimental features will be returned.
407
+ When ` -Disabled ` is specified, only disabled experimental features will be returned.
408
+ When ` -Name ` is specified, only those specified experimental features will be returned.
398
409
399
410
The cmdlet first goes through the items in ` EngineExperimentalFeatures ` to find all engine experimental features.
400
411
You can’t perform that action at this time.
0 commit comments