Password protecting other apps
-
Hi all, I would like to write a program that allows me to password protect applications such as Word and I.E. My, vision is that when one of these apps is launched my app would open first and ask for the password and then either continue or kill the app. Would you have any ideas to point me in the right direction? Thanks in advance for your help, bacon
-
Hi all, I would like to write a program that allows me to password protect applications such as Word and I.E. My, vision is that when one of these apps is launched my app would open first and ask for the password and then either continue or kill the app. Would you have any ideas to point me in the right direction? Thanks in advance for your help, bacon
i did soemthing like this using API hooks.study Ivo Ivanov's API hooking revealed for more info. Hope it helps :) Regards Kane "Some guys hack just to get themselves a girlfriend.What a pathetic reason, huh ?"
-
i did soemthing like this using API hooks.study Ivo Ivanov's API hooking revealed for more info. Hope it helps :) Regards Kane "Some guys hack just to get themselves a girlfriend.What a pathetic reason, huh ?"
what i would do, is look for windows with those classname and titles of the windows you wish to protect, (you can use Spy++ to get them) then hide them using the Showwindow() function and bring up your password dialog if they enter the right password show the window/s again using ShowWindow()
-
Hi all, I would like to write a program that allows me to password protect applications such as Word and I.E. My, vision is that when one of these apps is launched my app would open first and ask for the password and then either continue or kill the app. Would you have any ideas to point me in the right direction? Thanks in advance for your help, bacon
Anonymous wrote: ...when one of these apps is launched my app would open first... You might see about modifying the HKEY_CLASSES_ROOT\exefile\shell\open\command registry key. Change the (Default) value to myprog.exe "%1" %* and see if that works.
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen
-
Anonymous wrote: ...when one of these apps is launched my app would open first... You might see about modifying the HKEY_CLASSES_ROOT\exefile\shell\open\command registry key. Change the (Default) value to myprog.exe "%1" %* and see if that works.
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen