mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 12:35:24 +02:00
reg-flags: add page (#1931)
This commit is contained in:
parent
29a6f5979c
commit
3e58ec533c
1 changed files with 19 additions and 0 deletions
19
pages/windows/reg-flags.md
Normal file
19
pages/windows/reg-flags.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# reg flags
|
||||
|
||||
> Display or set flags on registry keys.
|
||||
|
||||
- Display current flags for a specific key:
|
||||
|
||||
`reg flags {{key_name}} query`
|
||||
|
||||
- Display help and available flag types:
|
||||
|
||||
`reg flags /?`
|
||||
|
||||
- Set specified space-separated flags, and unset unmentioned flags, for a specific key:
|
||||
|
||||
`reg flags {{key_name}} set {{flag_names}}`
|
||||
|
||||
- Set specified flags for a specific key and its sub keys:
|
||||
|
||||
`reg flags {{key_name}} set {{flag_names}} /s`
|
Loading…
Add table
Reference in a new issue