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
3
votes
2 answers

How to read logon events and lookup user information, using Powershell?

How does one read logon and logoff events from the Windows event log, and retrieve the corresponding information for each user from Active Directory, using Powershell?
3
votes
1 answer

Add message to logon screen windows 7

I know that in windows 8, certain applications have a notification on the lock screen, and some fingerprint readers can add messages to the logon screen in windows 7 and older machines. Is it possible for a program to display a message on the logon…
Often Right
  • 427
  • 1
  • 9
  • 22
3
votes
1 answer

What is the api to impersonate a Windows local user account without providing the password?

Let me rephrase my question according to Derek suggestion. In Windows Vista/7/8/8.1 the task scheduler can execute a task within the security context of a local user account without storing the local account user password. This is the case when the…
Evolve_or_Die
  • 119
  • 2
  • 9
3
votes
1 answer

How to perform fast user switching

I'm looking for a function that could perform a fast user switching. Something like ExitWindowsEx() or InitiateShutdown(). I searched in MSDN but I could find anything useful. The only thing was that:…
Avert
  • 435
  • 3
  • 17
3
votes
3 answers

How to switch user programmatically in windows

I would like to know if there are any API's available to switch users programmatically in windows.My application when provided with user credentials(account name & password) will try to logout any other user logged on and try to login the present…
user2482613
  • 77
  • 1
  • 6
3
votes
0 answers

Windows Service - OnSessionChange - Slow Notification

I am writing a Windows Service that needs to detect when there are any user session changes on the machine (i.e. a user logs on, logs off, disconnects, etc). I have implemented the OnSessionChange override method within my code and I have noticed…
3
votes
2 answers

subscribe to windows system events native c++

I want my c++ app to listen to windows system event like, logon, logoff, lock... similar to: http://www.dotnetspider.com/resources/30389-To-detect-when-system-gets.aspx that is written in C#. I found…
lironda
  • 171
  • 3
  • 5
3
votes
4 answers

How can I run an application on startup on a Windows system which has been modified to not run explorer

SUMMARY How can I make my GUI application run on windows startup on a modified Windows box that will not start explorer.exe. Placing a link in Programs -> Startup folder doesn't get executed. My Application is graphical so I cannot just modify…
blak3r
  • 16,066
  • 16
  • 78
  • 98
2
votes
1 answer

Unlock a Win7 desktop via application

I am trying to have a program unlock the user's Windows7 desktop. I assume this is easiest in some .NET language however anything will suffice. I have been reading some posts regarding this on stackoverflow and some say it's not possible. If this…
user974896
  • 1,795
  • 4
  • 28
  • 48
2
votes
1 answer

Programmatically windows logon session change

I have a windows service runs under "LocalSystem" account. What i can do with this service: I can get active user token and start a new process to user session interactively by using CreateProcessAsUser. I can get another user token by LogonUser…
candogg
  • 145
  • 7
2
votes
1 answer

How can I get the SID of a user having from his/her username when the AD is not available?

I'm trying to get a user SID by using the following function: return new NTAccount(username).Translate(typeof(SecurityIdentifier)).ToString(); Although this function works almost in all cases, when the machine in which this function runs is…
Andoni Martín
  • 253
  • 1
  • 3
  • 10
2
votes
2 answers

Start Application with service

i want to run an application made in c# winform through service.i have done the code but the application does not get started even service successfully gets started and no exception is thrown. protected override void OnStart(string[] args) …
Afnan Bashir
  • 7,319
  • 20
  • 76
  • 138
2
votes
4 answers

Run Application at window Login Screen

I have made C# winform keyboard that i need to run at windows login screen so that user can enter password to specific user account. the computer which is using this application doses not have physical kb. i came across GINA some say this is the…
Afnan Bashir
  • 7,319
  • 20
  • 76
  • 138
2
votes
2 answers

Remote LogOn with WCF and C#

Is there any way to log on to a Windows machine using WCF and C#? I am creating a Test Harness and it will needed to remotely logon a Windows user. So far we have not been able to do it successfully as once the user has been log off from the…
Manolete
  • 3,431
  • 7
  • 54
  • 92
2
votes
1 answer

Credential Providers V2 - Add code after submit and check user's password

How do I add my code after click submit button and check user password? I add my code in GetSerialization function after successfully calling KerbInteractiveUnlockLogonPack and RetrieveNegotiateAuthPackage. But in this state first run my code and…
1 2
3
12 13