How to add, view, delete users in Credential Manager with Command Prompt

<!–

–>

On Windows 10, Credential Manager is a legacy feature available through Control Panel designed to store sign-in information for websites, apps, and network services (such as shared folders and printers), so you do not have to repeat the credentials in the future.

Although you can store and manage network user information with the Credential Manager, it’s also possible to use Command Prompt to add, remove, and view credentials. Usually, this will be helpful when you are building a script, or you are the type that is always working with commands.

In this guide, you will learn the steps to add, remove, and view network user information from Credential Manager using Command Prompt on Windows 10.

Add network credentials with Command Prompt on Windows 10

To use Command Prompt to add network credentials to Windows 10, use these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.

  3. Type the following command to add a network user and password to Windows 10 and press Enter:

    cmdkey /add:COMPUTER-OR-DOMAIN /user:COMPUTER-OR-DOMAIN\USERNAME /pass:PASSWORD

    In the command, replace COMPUTER-OR-DOMAIN with the target computer, IP address, or domain, COMPUTER-OR-DOMAIN\USERNAME for the target device and username, and PASSWORD for the account password.

    This example creates an entry in Credential Manager for the “admin01” user available in the target computer:

    cmdkey /add:office-pc /user:office-pc\admin01 /pass:password
    cmdkey add command
    cmdkey add command
    .Windows_Software_Technology-Big-343 { display:inline-block; width: 300px; height: 600px; } @media(min-width: 500px) { .Windows_Software_Technology-Big-343 { width: 300px; height: 600px;} }

Once you complete the steps, the user information will store in the Credential Manager.

Remove network credentials with Command Prompt on Windows 10

To remove a network user information from Credential Manager with Command Prompt, use these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.

  3. Type the following command to remove a network user from Credential Manager and press Enter:

    cmdkey /delete:COMPUTER-OR-DOMAIN

    In the command, replace COMPUTER-OR-DOMAIN for the name of the target computer, IP address, or domain storing the credentials.

    This example deletes the user credentials for the target device called “office-pc”:

    cmdkey /delete:office-pc
    cmdkey remove command
    cmdkey remove command

View network credentials with Command Prompt on Windows 10

To view all the network users information stored in Credential Manager with Command Prompt, use these steps:

  1. Open Start.

  2. Search for Command Prompt, right-click the top result, and select the Run as administrator option.

  3. Type the following command to view a list of credentials and press Enter:

    cmdkey /list
    cmdkey list command
    cmdkey list command
  4. (Optional) Type the following command to view a list of credentials from an specific computer and press Enter:

    cmdkey /list:COMPUTER-NAME

    In the command, replace COMPUTER-NAME for the name of the target computer, IP address, or domain storing the credentials.

    This example lists the entries for the target computer called “office-pc”:

    cmdkey /list:office-pc
    cmdkey list computer command
    cmdkey list computer command

When using this command, you can also see the basic details, such as username, type, target device, etc. You can never view the password by design.

Post a Comment