block CTRL+ALT+DEL ?

  • Thread starter Thread starter Gillard
  • Start date Start date
G

Gillard

hi all

is it possible to block the CTRL+ALT+DEL Key conbinations in a vb.net
application??

ans how to ??

please !
 
hi all

is it possible to block the CTRL+ALT+DEL  Key conbinations in a vb.net
application??

ans how to ??

please !

That immediately sounds like a very bad idea, if I ever had an
application do that to me I would immediately uninstall your
application and never, ever buy from you again.

Thanks,

Seth Rowe [MVP]
http://sethrowe.blogspot.com/
 
i found it for XP


Microsoft.Win32.Registry.SetValue("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\",
"DisableTaskMgr", 1)
 
Gillard said:
is it possible to block the CTRL+ALT+DEL Key conbinations in a vb.net
application??

No, because Ctrl+Alt+Del is a Secure Attention Sequence (SAS). You may want
to write a (unmanaged, in C/C++, for example) GINA DLL to trap the key
combination.
 
you should try the trick that i deed show ^^

Herfried K. Wagner said:
No, because Ctrl+Alt+Del is a Secure Attention Sequence (SAS). You may
want to write a (unmanaged, in C/C++, for example) GINA DLL to trap the
key combination.
 
Since task manager starts with shift-ctrl-esc, are you sure this does what
you asked?
 
is it possible to block the CTRL+ALT+DEL Key conbinations in a vb.net
That immediately sounds like a very bad idea, if I ever had an
application do that to me I would immediately uninstall your
application and never, ever buy from you again.

Full ACK. Why should an application block the most important system key
combination in the first place?
http://www.codeproject.com/KB/winsdk/AntonioWinLock.aspx Doesn't mention
XP or Vista as compatible have you already tested this on these
platforms and probably also x64 variants?

Regards,

Peter
 
Peter Gibbons, ye pribbling poor, a foul and pestilent congregation of
vapours. What a piece of work art thou!, ye dilated:
Full ACK. Why should an application block the most important system key
combination in the first place?
http://www.codeproject.com/KB/winsdk/AntonioWinLock.aspx Doesn't mention
XP or Vista as compatible have you already tested this on these platforms
and

References

1. Disabling Keys in Windows XP with Trapkeys by Paul DiLascia.
probably also x64 variants?

BWAHAHAHAHAHAHAHAH! You ****ing stupid ****.
 
Back
Top