Jump to content

disable control+alt+delete in windows


arfett

Recommended Posts

  • 3 years later...

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"))

Link to comment
Share on other sites

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.

Edited by iamtheky
Link to comment
Share on other sites

Link to comment
Share on other sites

  • 2 months later...

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.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...