File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ The user can always prevent inheriting configuration from the system by explicit
5252### Enable and Disable cmdlets
5353
5454``` none
55- Enable-ExperimentalFeature [[-Name] <string[]>] [-Scope < CurrentUser|System> ] [<CommonParameters>]
55+ Enable-ExperimentalFeature [[-Name] <string[]>] [-Scope { CurrentUser | AllUsers } ] [<CommonParameters>]
5656
57- Disable-ExperimentalFeature [[-Name] <string[]>] [-Scope < CurrentUser|System> ] [<CommonParameters>]
57+ Disable-ExperimentalFeature [[-Name] <string[]>] [-Scope { CurrentUser | AllUsers } ] [<CommonParameters>]
5858```
5959
6060These cmdlets allow users to selectively enable and disable experimental features.
@@ -64,7 +64,7 @@ The `-Name` parameter shall accept `ValueFromPipelineByPropertyName` and is the
6464The ` -Scope ` parameter is optional and defaults to ` CurrentUser ` and will create or update the
6565` powershell.config.json ` in ` $HOME\Documents\PowerShell\powershell.config.json ` on Windows
6666and from ` $HOME/.config/powershell/powershell.config.json ` on Linux and macOS.
67- If ` -Scope ` is ` System ` , it will create or update ` $PSHOME\powershell.config.json ` .
67+ If ` -Scope ` is ` AllUsers ` , it will create or update ` $PSHOME\powershell.config.json ` .
6868
6969Experimental features are read and enabled at PowerShell startup, so a warning message will be provided informing the user:
7070> Experimental feature changes will only be applied after restarting PowerShell.
You can’t perform that action at this time.
0 commit comments