1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

cmdkey: add page (#10430)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
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

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}}`