As part of the password management tool, I am trying to list the usernames of the IE 10 website (i.e. auto-complete usernames) using CredEnumerate . When I call CredEnumerate , it gives several usernames (common usernames and domain usernames) from the Windows Credentials section of the Credential Manager, but does not contain anything from the Web Credentials section of Credential Manager (Credentials data ") Control Panel \ User Accounts and Family Security \ Credential Manager).
private static void Main() { int count; IntPtr pCredentials; bool ret = CredEnumerate(null, 1, out count, out pCredentials);
How to access web credentials?
Brian
source share