Hi,
I am working on developing a customized credential provider. In windows default credential provider, there is a link of "More Choices" on taking a RDP connection (as shown in below image).
So, in our customized credential provider, we use the Credential Provider field descriptors provided by Microsoft (https://docs.microsoft.com/en-us/windows/win32/api/credentialprovider/ns-credentialprovider-credential_provider_field_descriptor)
and manipulate these fields to show/hide them as per our need.
The issue I am facing is that in our Credential Provider we are unable to see this "More Choices" link by default and therefore need the following details of this field to make it visible:
DWORD dwFieldID;
CREDENTIAL_PROVIDER_FIELD_TYPE cpft;
LPWSTR pszLabel;
GUID guidFieldType;
Kindly help in providing the details for the same.