Skip to content

Commit c86f6df

Browse files
committed
address Joel's feedback
1 parent ea159a6 commit c86f6df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

1-Draft/RFC0000-Experimental-Feature-User-Experience.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

6060
These cmdlets allow users to selectively enable and disable experimental features.
@@ -64,7 +64,7 @@ The `-Name` parameter shall accept `ValueFromPipelineByPropertyName` and is the
6464
The `-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
6666
and 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

6969
Experimental 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.

0 commit comments

Comments
 (0)