In Windows 11 Credential Manager, the fields depend on the credential type, but for a typical Windows credential used to access another PC on the network, the three fields are:
- Internet or network address
The target computer or service name that Windows should use the credential for. This is the PC name, server name, share target, or sometimes the IP address. In the Credential API, this maps to TargetName. For domain-style targets, Windows supports names such as a server name, DFS share, or even*as a wildcard. For generic credentials, the target identifies the service using the credential. - User name
The account name that exists on the remote PC or service. For network PC access, this is commonly entered asComputerName\UserNamefor a local account on the remote computer. Windows distinguishes between credential types such as domain password, domain certificate, and generic credentials. - Password
The secret for that account. In the Credential API, this is stored in CredentialBlob. For CRED_TYPE_DOMAIN_PASSWORD, this field contains the plaintext Unicode password for the specified UserName, and Windows authentication packages such as NTLM, Kerberos, and Negotiate can use it automatically when connecting to the named target.
If the goal is access to another Windows PC, the practical format is usually:
- Internet or network address:
\\RemotePCNameor the remote PC IP address - User name:
RemotePCName\LocalUserName - Password: the password for that account on the remote PC
To view or change saved credentials:
- Type credential manager in the taskbar search box.
- Open Credential Manager Control panel.
- Select Windows Credentials.
Also note:
- Web Credentials are for websites and connected apps.
- Windows Credentials are for network resources, Windows systems, and similar sign-in targets.
- Windows caches some credentials for single sign-on, especially domain credentials.
References: