cmdkey: add page (#10430)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
pull/23/head
Aleksandr Kostikov 2023-06-30 05:47:33 -07:00 committed by GitHub
parent a1561ccc1b
commit e1dc79df27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
pages/windows/cmdkey.md Normal file
View File

@ -0,0 +1,16 @@
# cmdkey
> Create, show, and delete stored user names and passwords.
> More information: <https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/cmdkey>.
- Show a list of all user credentials:
`cmdkey /list`
- Store credentials for a user that accesses a server:
`cmdkey /add:{{server_name}} /user:{{user_name}}`
- Delete credentials for a specific target:
`cmdkey.exe /delete {{target_name}}`