I wrote a class implementing ICredentialProviderFilter in order to not allow Microsoft password provider to show up, because I need a two factors logon.
But I don't know why, the password provider always shows up.
Im writting the registry entry to register my filter.
Is posible to filter microsoft password provider
There is any way I can know if my filter is being loaded
Thanks in advance
Here is the code im using in Filter method
UNREFERENCED_PARAMETER(cpus);
UNREFERENCED_PARAMETER(dwFlags);
for (DWORD index = 0; index < cProviders; index++) {
if (IsEqualGUID(rgclsidProviders[index], CLSID_CSampleProvider))
rgbAllow[index] = TRUE;
else
rgbAllow[index] = FALSE;
}
return S_OK;