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
0
votes
1 answer

git: Invalid username or password even tough no credential manager or credentials in Wincred

Since my last token for github authentication expired, git on windows prompt me that the username and password are invalid (Which is correct) Only problem is, whatever I do, I cannot reset, change or remove them. I tried changing them in Credential…
Alex Boutin
  • 157
  • 1
  • 8
0
votes
1 answer

Able to clone but not able to push

I am unable to push the repository. I am able to clone the repository. I have seen in my credential manager, but I can't see my credentials saved there. I did try using git config --global user.name "UserName" git config --global user.email…
0
votes
1 answer

Git for Windows: Authentication failed for 'https://dev.azure.com/my-orgnanization

I've removed all credentials from credential manager starting with git:* and SSO*. When I run git fetch in my locally cloned repo and I log in using my Microsoft account I get: git fetch fatal: Authentication failed for…
Liero
  • 25,216
  • 29
  • 151
  • 297
0
votes
0 answers

How to use navigator.credentials to store passwords in a React application?

In a react app I need to access MySQL servers, for which I need the user's credentials. In order to avoid having the user enter them every time a connection is opened I'd like to store the password in the browser's password store/manager. According…
Mike Lischke
  • 48,925
  • 16
  • 119
  • 181
0
votes
1 answer

Why can I push to a remote under a different user.name and user.email without logging in?

I first deleted all credentials related to git in the credential manager in Windows, changed my user.name and user.email to another user in a repo and then push to a remote. Git then asked me to login via browser. I clicked the login button and the…
palapapa
  • 573
  • 2
  • 5
  • 25
0
votes
1 answer

AdysTech/CredentialManager remove credentials issue

I am new to stackoverflow and C#. I recently started to publish simple WinForm apps but I still have a long way to go... I wrote an app that uses the above nuget package to remove all credentials stored locally. I am able to use…
0
votes
1 answer

Add new entries to the Windows Credentials Vault

I want to be able to add multiple entries to my Windows Credentials Vault using PowerShell. I searched a bit and came across this code: [Windows.Security.Credentials.PasswordVault,Windows.Security.Credentials,ContentType=WindowsRuntime] $vault =…
JusteThom
  • 80
  • 1
  • 3
  • 9
0
votes
1 answer

Getting handles to the credentials of a domain user from a process launched by a local user on Windows 10

Background: Computer mycomputer is running Windows 10 and is joined to domain mydomain.com. A user is logged with local account mycomputer\localuser on mycomputer. The user also knows the password of domain account mydomain\domainuser. The service…
Arnaud
  • 3,765
  • 3
  • 39
  • 69
0
votes
1 answer

Unable to use non ascii chars (accents) in Windows Credentials Provider

I'm creating a Windows Credentials Provider using the Microsoft's "Sample All UI" example. As French speaker, i need to use accents like that : "éàèê". All my strings are widechar strings (syntax: L"Numéro de téléphone"), and all the strings…
0
votes
1 answer

Fetch, pull, merge or push a change to GitHub gitbash gives {git: 'credential-cache' is not a git command. See 'git -- help'.}

This error git: 'credential-cache' is not a git command. See 'git --help'. is showing every time I try to interact with GitHub: In order to get out of the pain of typing my GitHub idname & password each time I fetch, pull, merge and push changes…
0
votes
0 answers

Access Windows.Security.Credentials.PasswordVault over PS-Session on fresh Azure VM

This is essentially a re-post of this question: "Cannot open Vault" when accessing PasswordVault on a fresh machine via WinRM It is quite old, and we don't don't know how to "bump" it, so we are restating here... After entering a PS-Session on a…
0
votes
1 answer

Should I delete either credential.helper=store or credential.helper=manager to avoid to type in my credentials every time?

It's a while I don't push code on my github account. Today as I tryed to git push -u origin master my command prompt (Anaconda) asked me to type in my github username and password Logon failed, use ctrl+c to cancel basic credential prompt.…
Tms91
  • 3,456
  • 6
  • 40
  • 74
0
votes
1 answer

How to know if my AWS role has IAMFullAccess?

I'm currently working on a task to configure credential rotation in AWS Secret Manager, I did some reading, from my understanding, the best practice is to use the feature on Secret Manager Console 'enable the rotation', then SM will create a Lambda…
0
votes
0 answers

node-keytar, machine wide credential

I need to store a refresh token from OAuth securely, but I need it to be accessibly by my application for all users on the machine. From what I can tell node-keytar only supports credentials being stored on a per user account basis. Is there a way…
CamHart
  • 3,825
  • 7
  • 33
  • 69
0
votes
1 answer

Unable to authenitcate TFS from git command

I use TFS for source control and when I use git command line from new machine, I need to save credentials manager manually. Otherwise, I receive "Authentication Failed" Is there alternative than pre-defining credentials in credential…