|
-
Feb 23rd, 2001, 01:48 PM
#1
Thread Starter
Fanatic Member
PLEASE help me!! I need to know how to diasble the ALT+CTRL+DEL keys for WINNT and WIN2000. There is a way somehow via hooks, registry, or API (msgina.dll) I am just not sure how to do it. PLEASE help me it is very urgent. Thank you very much!
-
Feb 23rd, 2001, 04:47 PM
#2
i dont know if it will work under win nt/2000, but win 98, do this:
Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any, ByVal fuWinIni As Long) As Long
Private Const SPI_SCREENSAVERRUNNING = 97&
Sub DisableTaskKeys()
'disables ctrl-alt-del, alt-tab, ctrl-f4, etc., keeping you in charge...
Dim rtn As Long
rtn = SystemParametersInfo(SPI_SCREENSAVERRUNNING, 1&, 0&, 0)
End Sub
Sub EnableTaskKeys()
Dim rtn As Long
rtn = SystemParametersInfo(SPI_SCREENSAVERRUNNING, 0&, 0&, 0)
End Sub
F
-
Feb 23rd, 2001, 04:56 PM
#3
Thread Starter
Fanatic Member
Yeah
Thanks, but yeah that only worlks for 95/98. This is a tough one, but I would love an answer!! Thanks again.
-
Feb 23rd, 2001, 09:35 PM
#4
why do you want to disable it? Maybe we can come up with a workaround.
-
Feb 26th, 2001, 09:29 AM
#5
Thread Starter
Fanatic Member
I am creating a security program and I want the user to have the option of applying specific measures...
-
Feb 26th, 2001, 11:12 PM
#6
i'm not real familiar with nt, but isn't the task manager a specific program? Maybe you can replace it with your own, and hide the original in a partition or something.
-
Feb 27th, 2001, 12:19 AM
#7
Thread Starter
Fanatic Member
Hmm...not a bad suggestion...MS speaks about a GINA dll which seems to control all of these functions....this would be great to figure out!
-
Feb 27th, 2001, 04:20 PM
#8
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|