Does any body know how disable the ctrl + alt + del sequence in windows 2000? The code posted in the code section does not work.
Printable View
Does any body know how disable the ctrl + alt + del sequence in windows 2000? The code posted in the code section does not work.
If I remember right, it's an API call that makes the system think its running a screen saver. Couldn't do it to save my life, though.
Sorry.
-John
Here is the code mentioned above for setting the ScreenSaver
Running Flag.
Hope this helps.Code:Dim lngResult As Long
'Disable Ctrl+Alt+Del by setting screensaverrunning flag
lngResult = SystemParametersInfo(SPI_SCREENSAVERRUNNING, True, plod, 0)
there is an article about his on vb world.
try searching for disable :)