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
1
vote
0 answers

Programmatically Create Windows Credential Manager Entries

I want to create (not backup/restore, for a variety of reasons) Windows Credential Manager entries, for example Samba Share credentials, but others as well. I do not want to set up PCs manually for this. Is there a way to create the credentials…
Jibril
  • 967
  • 2
  • 11
  • 29
1
vote
0 answers

get-storedCredential not able to fetch windows credential

When I run the command get-StoredCredential for a generic credential it is giving me the output which makes me agree that the credentials are getting fetched in object form. However, when I use same command to fetch windows credential, it is giving…
Adnap
  • 11
  • 1
1
vote
1 answer

SQL Server Windows Authentication over VPN using credential manager

I am trying to connect to remote SQL Server using Windows Authentication over VPN. I did some research on that and found two ways to achieve this From here The first approach works fine runas /netonly /user:domain\username ssms.exe But according…
1
vote
0 answers

Why does the Git credential manager need to implement each service separately?

Background: We have a local Gitea server in the office. I just started using it with Git Credential Manager Core enabled. Surprisingly (to me), I have to retype my password every time I want to fetch or push (over https). After reading a bit in the…
schtandard
  • 387
  • 4
  • 18
1
vote
1 answer

Add 2 git repos in system

I am using aws code commit which uses git for code. I have created 2 repos say for eg repoA and repoB. Every time when i want to use either of these repos i have to remove one from credential manager then apply my credentials and then perform…
1
vote
1 answer

dynamic credential allocation in aa client 11.3.2

I need to use credential for log in to a system in AA for a bot that may run on different machines with a technical user for the system associated to each machine/bot. Lets say the system is Stackoverflow. Lets say I have two Virtual…
1
vote
1 answer

How to prevent BitBucket credentials getting stored in Windows Credential Manager when using Visual Studio?

I can't stop my BitBucket credentials being stored in Windows Credential Manager when using Visual Studio. I've unset credential.helper using all three commands: git config --global --unset credential.helper git config --system --unset…
David
  • 2,101
  • 2
  • 32
  • 41
1
vote
1 answer

Wincred not working properly with Git Bash(Git for Windows) when executing certain commands like "prune"

I have setup GitforWindows in my Windows 7 64Bit pretty well with Credential manager as "Wincred". Yet when I run some commands like git remote prune origin in GitBash, it gives following error in console, though runs the command: Failed to load…
Vicky Dev
  • 1,893
  • 2
  • 27
  • 62
1
vote
0 answers

How to set credentials to Credential Manager via PowerShell Remote Session

I'm trying to write credentials for TFS Connection to the generic part of windows credential manager with following script: https://gallery.technet.microsoft.com/scriptcenter/PowerShell-Credentials-d44c3cde It works fine, when I am connected to the…
Waldemar
  • 105
  • 1
  • 11
1
vote
2 answers

How do I determine if Windows Credentials are disabled

I am using the CredRead() and CredWrite() functions from the Windows Credential Manager API to store and retrieve user passwords, as outlined in this StackOverflow answer. However, I have read that it is possible to disable the Credential Manager by…
Josh Doebbert
  • 542
  • 4
  • 16
1
vote
1 answer

Caching refresh tokens using ADAL v3 and Windows Credential Manager

I have a VSTO plugin and I want users to log in with AAD so it can access downstream services but to reduce the number of login prompts I would like to cache the refresh token in Windows credential manager. I believe ADAL v3 doesn’t allow refresh…
MattCowen
  • 165
  • 8
1
vote
1 answer

No valid certificates were found on this smart card

I'm using Yubikey4 as my smart card with my StartCom Class 1 login certificate. My problem is: windows don't want to use this card. Windows credential manager: "No valid certificates were found on this smart card". Microsoft office doesn't see this…
1
vote
1 answer

TypeError: Failed to construct 'PasswordCredential': 'id' must not be empty

I want to implement credential management API in my angular app my login.html looks like this
1
vote
1 answer

Export Windows credentials with CMDKEY or similar batch equivalent

I am looking to export Windows credentials to another Windows machine. So far in Windows, all I have is the GUI option to backup / restore, but no options in CMDKEY to backup / restore all Windows credentials. Is there a command line equivalent to…
1
vote
1 answer

How do you store multiple credentials under 1 username using the c# credential manager API?

I am trying to store more than 1 username and password per target. The problem is every time a new credential is added with the same username but different targets and passwords, other credentials with the same username are deleted. My question is…