Questions tagged [credential-manager]

Credential Manager allows you to store credentials, such as user names and passwords that you use to log on to websites or other computers on a network.

Credential Manager allows you to store credentials, such as user names and passwords that you use to log on to websites or other computers on a network. By storing your credentials, Windows can automatically log you on to websites or other computers. Credentials are saved in special folders on your computer called vaults. Windows and programs (such as web browsers) can securely give the credentials in the vaults to other computers and websites. For information about saving credentials in a vault.

120 questions
41
votes
4 answers

Where is my remote git repository password stored on the local machine?

I have a git repository set up on bitbucket $ git remote -v origin https://myusername@bitbucket.org/myusername/my_repository_name.git (fetch) origin https://myusername@bitbucket.org/myusername/my_repository_name.git (push) I pull and push to the…
Rahul Yadav
  • 2,627
  • 5
  • 30
  • 52
34
votes
6 answers

Accessing Windows Credential Manager from PowerShell

I'm using PowerShell 2.0 (necessary because of SP2010) On Windows Server 2008 R2. I need to retrieve credentials for a process from the Windows Credential Manager. I can't seem to make it work. I was given this piece of…
28
votes
6 answers

'credential-manager' is not a git command

Am on Windows 10 64-bit running git version 2.33.1.windows.1 against Azure repos. Since my last update I get the following error when cloning a rep using TortoiseGit v2.13.0.1 (latest version). git.exe clone --progress -v…
oceanclub
  • 477
  • 1
  • 4
  • 13
23
votes
1 answer

How to store and retrieve credentials on Windows using C#

I build a C# program, to be run on Windows 10. I want to send emails from this program (calculation results) by just pressing a button. I put the from: e-mail address and the subject:, etc. in C# properties, but I do not want to put a clear text…
Erik
  • 894
  • 1
  • 8
  • 25
12
votes
4 answers

Remove an entry from credential manager for all users on Windows

I am currently implementing a "remove settings" for all users in a Windows uninstaller and came over an issue I am not even sure is possible to solve. The application stores credential entries for the current user using the CredentialManager…
Pettor
  • 491
  • 2
  • 6
  • 16
10
votes
0 answers

Save passwords in Chrome on broken SSL sites

When a website does not have a valid SSL certificate Chrome does not allow saving passwords. Is there a workaround or a flag to enable this?
user4388177
  • 2,433
  • 3
  • 16
  • 30
8
votes
0 answers

How can I add Windows Credentials to Credentials Manager on Windows programmatically?

I have looked at this question's selected answer, Retrieve Credentials from Windows Credentials Store using C#, which uses the CredentialManagement NuGet package to get and set credentials on Windows. Credential Management package is a wrapper for…
user1676874
  • 875
  • 2
  • 24
  • 45
8
votes
2 answers

How do I change/switch user credentials used by git command line? (Windows 10, Git 2.9.2)

I'm having issues accessing my private GitHub repos. I believe the source of the problem is the user credentials that are "magically" used by Git (v 2.9.2 on Windows). I've been using multiple Git Accounts. It doesn't seem to be enough to change my…
tcs
  • 353
  • 1
  • 3
  • 11
7
votes
1 answer

Amazon CodeCommit credential helper - command not found

I have a CodeCommit repo that I'm trying to connect to from the command line of Windows 7. My intention is to use the aws configure / aws credential helper method as I prefer this, in this context, to a username / password. When attempting any git…
7
votes
2 answers

Retrieving password from Windows Credential Manager using CMD

I am trying to add and retrieve credentials from Windows Credential Manager using a command prompt. To add a new credential, I have the command like below and it works perfectly: cmdkey /add:testTarget /user:testUser /pass:testPassword However,…
Benjamin
  • 3,499
  • 8
  • 44
  • 77
7
votes
4 answers

SourceTree multiple github account

I have two different github accounts and two repositories. When cloning the repositories I have used the correct username. But When I want to commit I am not able to choose between the users. It picks up the global git user by default. Is there a…
6
votes
2 answers

.NET Core: How to access Windows Credential Manager if running on Windows (otherwise ignore)?

So far, to store and retrieve secrets (like credentials) in .NET applications, I successfully used the CredentialManagement package on Windows. Now I'd like to go cross-platform. So I need to access the Windows Credential Manager from a .NET Core…
Heinrich Ulbricht
  • 10,064
  • 4
  • 54
  • 85
6
votes
1 answer

cmdkey delete credentials with dashes and spaces on the name " -"

cmdkey seems to be unable to delete credentials by target name when said name includes a space and a dash - I have a credential Test Credential - Iteration1 which I want to delete, but when I try cmdkey /del:Test Credential - Iteration1 I get The…
life makes
  • 71
  • 1
  • 4
6
votes
0 answers

Navigator credentials creation method returning an exception

Trying to run a demo for the webautn spec (https://www.w3.org/TR/webauthn/) available (https://github.com/molekilla/webauthn-demo-fork) under Firefox Nightly. getMakeCredentialsChallenge({ username, name }) .then((response)…
Joao Pereira
  • 573
  • 4
  • 16
6
votes
1 answer

Access Windows Credentials in Credential Manager

Using the Windows.Security.Credentials.PasswordVault class, I can access the passwords stored under "Web Credentials" in the Windows Credential Manager: using System; using Windows.Security.Credentials; class Program { static void Main(string[]…
Paolo Tedesco
  • 55,237
  • 33
  • 144
  • 193
1
2 3 4 5 6 7 8