Tagged Questions
The winlogon tag has no wiki summary.
4
votes
1answer
341 views
how can i interact in windows (xp, vista, 7) welcome screen or locked screen like a VNC or Dame Ware
im trying to make a support software in c#.net like a VNC or Dame Ware and i dont know how to send input event to login or locked screen in windows (xp, vista and 7)
4
votes
2answers
858 views
Create an interactive logon session
I'm trying to create a utility similar to Microsoft's abandoned Super Fast User Switcher (download), which allows fast user switching without going through the Welcome screen.
I have a working ...
4
votes
2answers
3k views
Displaying Window on Logon Screen Using C# in Windows XP
I am trying to create a service with C# that launches a process that can be displayed on the Windows XP Logon screen.
I found some code that is doing this in C++. The C++ code is for a service that ...
3
votes
1answer
179 views
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 ...
3
votes
1answer
958 views
Building a custom credential provider for Windows 7
After looking through the code for building custom credential providers for Windows 7, I managed to get my own tile to show up on the logon screen, and can logon as the desired user. However, I am ...
3
votes
1answer
518 views
Take screenshot of desktop when Windows is locked (Win+L)
I want to take a screenshot of desktop while Windows is locked (with Win+L). Standard methods make a black screen, with code of pixel:
COLORREF color = GetPixel(hdc, x, y);
equal -1. Neither a user ...
3
votes
4answers
765 views
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 ...
2
votes
2answers
82 views
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.
...
2
votes
3answers
187 views
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 ...
2
votes
2answers
138 views
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 ...
2
votes
0answers
115 views
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. ...
2
votes
1answer
989 views
Creating a process in a non-zero session from a service in windows-2008-server?
I was wondering if there is a simple way for a service to create a process in user session?
My service is running as a user(administrator) account and not as a LocalSystem acount, therefore i can't ...
2
votes
4answers
739 views
hook a hotkey from windows logon screen
i built a program that hooks the keyboard and when some hotkey pressed it openning the door (that connected to the COM1 serial port of the computer).
this works fine, until i locking the computer ...
2
votes
1answer
891 views
Removing Windows Logon screen through a service
I am trying to remove the windows logon screen (winlogon) from an executable launched from a service. The service would start automatically with windows and wait for commands from another computer. ...
1
vote
1answer
56 views
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 ...
1
vote
2answers
250 views
Programmatic Windows user profile creation
I am trying to do something similar to what the user who asked this question is trying to do:
HTTPS Request From a Credential Provider DLL
Concerning the components of a user profile, I found this.
...
1
vote
2answers
639 views
Add winlogon login method using C# and YubiKey
As for personal fun and challenge, I wanted to add a way to login on my own personal computers. All are currently using Windows 7.
Normally this would use ICredentialProvider or something like that. ...
1
vote
2answers
273 views
Windows LogonUser Function Works with Old Passwords?
I am using the LogonUser function (http://msdn.microsoft.com/en-us/library/aa378184(VS.85).aspx) to authenticate users. However i have found that if a user changes their password (ie from Password1 to ...
1
vote
1answer
304 views
Can users interact with services directly on Microsoft Vista?
From the Microsoft website (see msdn.microsoft.com/en-us/library/ms683502(VS.85).aspx) it clearly says "Services cannot directly interact with a user as of Windows Vista".
So I decided to test this ...
0
votes
4answers
79 views
How can I make a service logon Windows for me?
I have a basic setup to deal with here, no domains or fancy stuff. I can make a program receive a message from my phone to trigger events, etc.
How can a C# application run in the background before ...
0
votes
2answers
34 views
App is invisible if started from Task Scheduler without any user logged in
Is there any way to have app visible even if it is started with "Run only if user logged on" unchecked?
I know that windows starts app from task invisible as there is no user logged into yet.
But when ...
0
votes
0answers
23 views
WlxSASNotify and Windows Credential Provider
I am trying to figure out if there is a way for me to trap Ctrl-Alt-Del in a Windows 7 Credential Provider. I know we could do this in the GINA days using WlxSASNotify and I remember reading in the ...
0
votes
1answer
81 views
credential provider 64 bit on windows 7 pro
I have build a my own credential. I Installed it on 64 bit systems with Windows 7 home and it's ok. I tried to install it on 3 different machines with windows 7 64 pro and my provider is not shown.
I ...
0
votes
1answer
49 views
Credential Provider communicating over network
First let me explain my desired solution:
I'm making a custom Credential Provider to authenticate a user by sending logon credentials to an external authentication server, then passing the same ...
0
votes
1answer
81 views
Updating HKEY_CURRENT_USER hive from a service
I am writing a network provider (Windows 7) to capture the domain name and username and I have to keep this in HKEY_CURRENT_USER\Software\MyApp\Profile
Since the network provider is running as a ...
0
votes
1answer
59 views
Replacing Window 7's logon screen completely?
In Windows XP it was possible to substitute the logon interface for your own GINA implementation that could add additional features to the logon screen as well as implement some organisation-specific ...
0
votes
1answer
152 views
C++ script to “unlock” windows after being locked using “LockWorkStation()”
I have a C++ script that locks the windows when a specific event occurs. Locking windows is done using “LockWorkStation()” command. What I want to do is “unlock” windows when some other event occurs. ...
0
votes
0answers
83 views
Where did the winlogon SAS window gone?
I have a customized GINA DLL loaded from window registry. This custom GINA provide a button which will open an executable file exe. I manage to make C# exe program to be run when the button is ...
0
votes
0answers
188 views
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 ...
0
votes
2answers
529 views
Winlogon Notification DLL — Create Process as the user who logged in
I have a requirement to run an app as a user unlocks his computer. This works swimmingly in Win 7 with regular task scheduler. For XP -- ive Created a C++ DLL to do this. This seems to work great, ...
0
votes
0answers
181 views
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 ...
0
votes
0answers
29 views
Display window no matter desktop state
What would I have to do to make a web page be displayed no matter the status of the desktop including logged on/off or locked?
The web page in question is a javascript banner for an alert system. It ...
0
votes
2answers
576 views
Credential manager for Vista/Windows 7
I have Credential manager implemented in VC++ which captures credentials during login process. It works well in XP/Vista/Windows 7 32 bit env. But is not working in 64 bit.
Any idea ?
Thanks in ...
0
votes
1answer
585 views
uninstall using Wix on GINA causes login failure
Problem: After uninstalling a replacement GINA I get logged off immediately after logging on if I use the WIX 3.0 installer.
I have a replacement login process (GINA) for windows XP.
It consists of ...
0
votes
1answer
1k views
How do I monitor failed logon attempts in Windows?
Is there any reliable way to monitor failed logon attempts on-the-fly in Windows XP? (well, Vista too for that matter).
I need to monitor failed logon attempts programmatically which is currently ...