Questions tagged [winlogon]

Winlogon is the component of Microsoft Windows operating systems that is responsible for handling the secure attention sequence.

Winlogon is the component of Microsoft Windows operating systems that is responsible for handling the secure attention sequence, loading the user profile on logon, and optionally locking the computer when a screensaver is running (requiring another authentication step). The actual obtainment and verification of user credentials is left to other components. Winlogon is a common target for several threats that could modify its function and memory usage. Increased memory usage for this process might indicate that it has been "hijacked". In Windows Vista and later operating systems, Winlogon's roles and responsibilities have changed significantly.

192 questions
1
vote
1 answer

Smart Card Removal policy is not enforced when performing SSO using Custom Credential Provider

I have created a EFI Pre-Boot Application were in I enter the user credentials which are passed to windows to logon (Single Sign On) using my credential provider. I have a Group policy "Interactive logon: Smart card removal behavior" set to "Lock…
1
vote
0 answers

Launch WPF UI on user console connection

I have written a WPF application that I want to show (the UI) every time a user logs into a server. It must show on user login but also when a user connects to a existing console session via RDP. I have no trouble with new user login. The issue I'm…
Damo
  • 1,898
  • 7
  • 38
  • 58
1
vote
1 answer

Credential Provider - how to skip SAS?

I implemented my own custom Windows credential provider following the Windows SDK example which should let a remote application connect to a server and perform logon automatically. The problem is: the SetUsageScenario event is not called until a…
Dean
  • 6,610
  • 6
  • 40
  • 90
1
vote
0 answers

Run Logon Script before desktop loads

So basically what im trying to do: I want to run a logon script after a user logs in (my current script is a powershell script but i wouldnt mind any other type). This script should halt the login process and ask for a userinput, only if the user…
1
vote
2 answers

How to go back to CTRL+ALT+DELETE logon page if the custom credential provider fails to do any authentication?

I have enabled CTRL+ALT+DELETE secure attention sequence (SAS) for windows logon using local security policy. (secpol.msc , Security Settings->Local Policies->Security Options->Interactive Logon: Do not require CTRL+ALT+DEL -> Disabled ) Currently…
RP.
  • 717
  • 2
  • 13
  • 29
1
vote
0 answers

How to notify windows OS to hold on releasing logonui, so that Credential provider can release the resources

I am in process of developing a custom credential provider for windows 7. The CP include creation of browser control. The problem here is if the user decide to skip CP and perform windows logon, as the browser control is not destroyed, when windows…
userSAK
  • 11
  • 1
1
vote
0 answers

Embed information in Windows 10 Login Screen

Is it possible to embed additional information like websites or views of apps in the windows 10 logon screen - so the user can always see this information on login? (e.g. actual messages or dashboard information)?
Konrad
  • 4,329
  • 10
  • 54
  • 88
1
vote
1 answer

How to get the Active Desktop type on windows?

My software (a service coded in cpp) needs to know which desktop is active currently: Winlogon desktop Application desktop Screen saver desktop I have the code for registering WTS_SESSION_CHANGE but that only works when the session is switched.…
AhmadH
  • 76
  • 6
1
vote
0 answers

WPF Window on Winlogon Desktop

I'm trying to show a custom Window or Control designed and built in WPF on Winlogon Desktop. I already managed, to switch the Desktop of the Thread with "SetThreadDesktop" and the Window opens on the Winlogon desktop. The Problem is, that the…
binco
  • 1,598
  • 1
  • 12
  • 15
1
vote
1 answer

Credential Provider in Windows for Bio-metric Authentication

I have a custom usb based fingerprint recognition device. How can I associate the fingerprint on the device with the user of the Windows machine (Using CredentialProvider). Primarily, I want that upon fingerprint scanning automatic login should…
Demyan Borya
  • 101
  • 1
  • 12
1
vote
1 answer

Winlogon screen capturing in Windows 7/10

I need to capture a winlogon screen in WinXP/Win7/10. For WinXP I'm using a mirror driver and a standard methodic like this: ... extern "C" __declspec(dllexport) void SetActiveDesktop() { if ( currentDesk != NULL ) CloseDesktop(…
1
vote
0 answers

How do I implement dual factor authentication on Windows 10?

Once a user logs on to Windows with their normal credentials, I would like to communicate with a server, have that server send a push notification to my phone and complete the Windows login process by confirming that it's me on my phone. I'm…
1
vote
0 answers

Smartcard logon - where to find more details on "the requested operation is not supported"?

I have written a custom credential provider and a key storage provider to do a custom logon for windows where I use my smartphone instead of a card reader. The certificate is delivered to my key storage provider via bluetooth and lsass.exe calls the…
Frank
  • 2,036
  • 1
  • 20
  • 32
1
vote
0 answers

How to run my program at startup like CHKDSK

I noticed that if I ran CHKDSK /F c: and told it to run next time i boot, it runs before winlogon starts... image (Windows XP) How do I run my exe like this? Thanks!
cascading-style
  • 488
  • 9
  • 23
1
vote
1 answer

KSP (Key Storage Provider) not being loaded at logon via a Credential Provider

I am creating a Windows Credential Provider to logon into a Windows domain using certificates as described on this article. This implies creating a custom KSP that will be called by LsaLogonUser when creating an authentication package. I manage to…