I'm trying to write a application for fun, and to learn more about the registry and start up items. Its a Windows log on replacement, the way i see it is that the typical windows log on user name/password is stored in the registry... there for crackable BUT! By making a application that starts immediately after the welcome screen that prompts for a user name and password that is predefined within the application isn't as easily cracked. I got it to load up fine, what it does is kill explorer via "taskkill", "/F /IM explorer.exe" and i have something put in that changes registry keys to disable the task manager until log in. but the problem i'm faced with is: when logged into safe mode the application doesn't start! so in short my question is:

i use this to add the application to start up:

                RegistryKey Startup = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\RunOnce", true);

                Startup.SetValue(Application.ProductName, Application.ExecutablePath);

how can i have it start up in safe mode as well?

link|improve this question

43% accept rate
Do you really think that a hard-coded username/password in an application is harder to find than a user's normal password? Have you tried to find the password in the registry? – Jon Skeet Aug 11 '10 at 11:35
1  
You're doing it wrong. If you want to make a Windowa login replacement, you write a GINA - not an application that launches after a session has started. – Andrew Medico Aug 11 '10 at 11:41
well i know its PRETTY dang easy to crack a users regular password through the registry hives offline, and as for writing a GINA.. i'm a beginner would that be too much for me to handle? got any links on the subject? can it be made in c#? – NightsEVil Aug 11 '10 at 12:23
No, it's dang impossible. The password isn't stored anywhere, just the hash of it. – Hans Passant Aug 11 '10 at 13:02
this is what i want to know, when you launch safemode, help launches and a few other small programs, where is that info stored? registry? start up folder? its gotta be something some where that starts that stuff up. – NightsEVil Aug 11 '10 at 13:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.