MSFN Forum: disable control+alt+delete in windows - MSFN Forum

Jump to content



Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

disable control+alt+delete in windows Rate Topic: -----

#1 User is offline   arfett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 68
  • Joined: 02-October 05

Posted 11 October 2005 - 07:15 PM

Does anyone know how to disable the control+alt+delete functionality in windows? I'm trying to get it so you can only access task manager by hitting control+shift+escape.
Thanks in advance.


#2 User is offline   Dude111 

  • Awesome Dude
  • PipPip
  • Group: Banned
  • Posts: 247
  • Joined: 01-October 08

Posted 26 January 2009 - 03:12 AM

I have been wondering about a similar issue.....

Im running Win98se and i would like CTRL-ALT-DEL to open task manager (Which i have in 'MY BRIEFCASE')

Anyone know where that info is kept?? (The program that opens with you press CTRL-ALT-DEL ("Close Program"))

#3 User is offline   Idontwantspam 

  • Nerd-in-Chief
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,063
  • Joined: 25-February 07

Posted 28 January 2009 - 01:02 AM

It's simply not possible. At all. The Windows Security dialog is an integral part of the operating system's winlogon process, and you can't simply remove it. Is there anything wrong with accessing the task manager from the ctrl+alt+del screen??

#4 User is offline   Dude111 

  • Awesome Dude
  • PipPip
  • Group: Banned
  • Posts: 247
  • Joined: 01-October 08

Posted 30 January 2009 - 07:31 PM

On 98se "task manager" doesnt open with CTRL-ALT-DEL thats why i was curious :)

#5 User is offline   r3al1ty 

  • Newbie
  • Group: Members
  • Posts: 26
  • Joined: 06-August 05

Posted 06 February 2009 - 10:10 PM

Minlogon disables CtrlAltDelete.

#6 User is offline   iamtheky 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 833
  • Joined: 11-November 08

Posted 07 February 2009 - 09:33 AM

You can right click on any shortcut you make and specify a shortcut key. I have not found how you can overwrite system shortcut keys (like in xp ctrl+shift+esc opens taskmanager, regardless of what I have specified that is the only key combo that functions in that manner).

i use ctrl+shift+D for auslogics disk defrag created in that manner.

This post has been edited by iamtheky: 07 February 2009 - 09:34 AM


#7 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,791
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 07 February 2009 - 10:04 AM

Actually it is possible.

Just for the record ;):
http://msdn.microsoft.com/it-it/magazine/c...951(en-us).aspx

http://www.codeproje...nioWinLock.aspx

http://69.10.233.10/...eventclose.aspx

And (possibly :unsure:) the EASY way, instead of trapping anything, make the trap point to "nothing":
http://www.codeproject.com/KB/miscctrl/dis...spx?fid=1526462

jaclaz

#8 User is offline   kokain 

  • Group: Members
  • Posts: 7
  • Joined: 02-April 09

Posted 22 April 2009 - 02:56 PM

Here is two ways to do it in VB.

Process.Start("C:\WINDOWS\system32\taskmgr.exe")
Dim DTMGR As Integer = FindWindow(vbNullString, "Windows Task Manager")
SetWindowPos(DTMGR, 0, 0, 0, 0, 0, &H80)

Dim Pinfo As New System.Diagnostics.ProcessStartInfo("C:\WINDOWS\system32\taskmgr.exe")
Pinfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden
System.Diagnostics.Process.Start(Pinfo)


and to turn it off

Dim CTMGR As Integer = FindWindow(vbNullString, "Windows Task Manager")
SendMessage(CTMGR, WM_CLOSE, 0&, 0&)


A "work around", I know. But it does the job. Of course you have to Declare the windows API's first.

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy