Questions tagged [credential-providers]

The Credential Provider model, used by Windows Vista above, has replaced the older GINA model for implementing user authentication, allowing the user logon to be customized and integrated with the best authentication methods for the given tasks.

199 questions
75
votes
8 answers

Configure DataSource programmatically in Spring Boot

With Spring Boot I can instantiate a JdbcTemplate with the following: Code: @Autowired private JdbcTemplate…
Marsellus Wallace
  • 15,881
  • 21
  • 79
  • 143
29
votes
6 answers

How to programmatically interact with winlogon?

I have a Windows Service that I want to use to programmatically unlock the workstation, using the account username and password. This article https://technet.microsoft.com/en-us/library/dn751047(v=ws.11).aspx explains the logon authentication…
Dog
  • 466
  • 8
  • 24
17
votes
5 answers

Documentation for creating a Custom Credential Provider in Windows

Where is the documentation on creating a custom Windows Credential Provider located? Everything I've found so far points to the same article on how to make a custom credential provider (MSDN Magazine: "Create Custom Login Experiences With…
kberson
  • 329
  • 1
  • 2
  • 8
10
votes
3 answers

Custom Windows Authentication Package

So, here is the scenario. I am developing a logon system in windows 7. I have created a Credential Provider, containing one Credential. The Credential has three input fields, username, password, and PIN. From what I have learned the documentation…
10
votes
4 answers

Windows Credential Provider with C#

Has anyone successfully created a custom Windows Credential Provider in C#? The samples that are in the Windows SDK are all in C++. Some initial searching I have done indicates it may be possible but cannot seem to find anyone who has confirmed…
Paul Liebrand
  • 153
  • 1
  • 6
6
votes
2 answers

Windows7 credential provider to automatically logon user on the hardware event

I am developing a custom credential provider for Windows 7. My goal is to automatically log-in the user when a certain hardware event occurs. I have read all the MSDN articles related to this, and implemented a simple credential provider that…
Vlad
  • 8,407
  • 4
  • 39
  • 60
6
votes
4 answers

Credential provider usage scenario: CPUS_UNLOCK_WORKSTATION removed from Windows 10

I'm developing a custom credential provider and need to know at runtime if the scenario is a login or an unlock of the session. For this, I check the CREDENTIAL_PROVIDER_USAGE_SCENARIO returned by the SetUsageScenario of the ICredentialProvider…
skuallpa
  • 747
  • 2
  • 9
  • 22
6
votes
1 answer

Displaying a V2 Credential Provider on 'Other user' tile

I am trying to write a custom Windows credential provider. I have downloaded the V2 credential provider sample and I am able build, register and use it. For testing I have set up a hyper-v Windows 8.1 instance and joined a windows test…
fratim
  • 86
  • 6
6
votes
1 answer

How to programmatically invoke Ctrl+Alt+Del window in Windows 7

I am developing custom credential provider dll for Windows 7. This has a condition check; if it fails I want to show Ctrl+Alt+Del window. Which function can I call to invoke the Ctrl+Alt+Del(SAS) window?
Sanju Monu
  • 557
  • 1
  • 11
  • 38
5
votes
1 answer

HTTPS Request From a Credential Provider DLL

I've been creating a Credential Provider DLL that authenticates via the internet before allowing login. However this hasn't worked as well as I expected because my WinHTTP request isn't getting sent. I've confirmed this using wire shark. but I can't…
5
votes
2 answers

custom windows credential provider azure ad

I created my own implementation of ICredentialProvider and ICredentialProviderCredential for Windows sample code , so I can use my own process to login in windows REF. It works with credentials from a simple Windows user account, but for credentials…
5
votes
1 answer

How to integrate Amazon Cognito with Google Plus for Android?

This is my first question here, so please be gentle. As part of my university's project, I need to develop an Android app that lets me upload files, and share files with other users. I am new to Android programming (I watched some Android Beginner…
4
votes
1 answer

IPC between Credential Provider and a system service

What is the best way to communicate with a custom Credential Provider from a system service ? Is it possible to send a message through the message pump ? Can I use named pipes ? Any suggestions would be appreciated.
jacob
  • 1,227
  • 1
  • 24
  • 46
4
votes
1 answer

Compiling a Credential Provider with MinGW

I found some examples from Microsoft, but I'm not sure how to get started. I have what appears to be a VS project and a file with Registry entries. There are no makefiles included and not really any instructions on how to build. I am trying to use…
beatgammit
  • 18,285
  • 16
  • 79
  • 123
4
votes
1 answer

Windows 10 Credential Provider with C#

I am working on implementing a Credential Provider in C#. I have downloaded the V2 Credential Provider sample in C++, which is for Windows 8, and managed to make it work on my Windows 10 PC. I also looked into this credential provider implementation…
user8069470
1
2 3
13 14