Ctrl-Alt-Del /Task Manager Amalgamation

Here you can discuss ReactOS related topics.

Moderator: Moderator Team

JGR
Posts: 4
Joined: Fri May 26, 2006 11:25 am

Ctrl-Alt-Del /Task Manager Amalgamation

Post by JGR »

One thing that always iritated me about the more recent versions of windows is that the Ctrl-Alt-Del (CAD) box no longer includes a process killer.
So if you have a hung system at 100% CPU you can open the CAD box but the Task Manager won't load.
I used to use a Win98 a few years ago and it was quite easy to kill a hung app, (assuming the system hadn't spontaneously conbusted or BSOD).
A simple stripped down process killer added to the box would be a great idea.
I could even code it, if I could find the file, as I am relatively knew to this project.
So far I've been supremely impressed with ReactOS and I would look forward to using it.

The ReactOS source code is the best api howto/documentation I've ever come across...
e7
Posts: 92
Joined: Thu Dec 09, 2004 8:32 pm
Location: In Bayern ganz oben

Post by e7 »

Yes, this is a very bad thing in Windows NT...
User avatar
Jaix
Moderator Team
Posts: 838
Joined: Sat Nov 27, 2004 3:40 pm
Location: Sweden, Växjö

Ctrl-Alt-Delete brings TaskManager in XP pro

Post by Jaix »

Ctrl-Alt-Delete brings TaskManager in XP pro. At least on my installations. I think this should be enough for ReactOS, just make Ctrl-Alt-Delete bring up our TaskManager.
Mrkaras
Posts: 379
Joined: Sat Nov 27, 2004 5:43 am
Location: Australia
Contact:

Post by Mrkaras »

if you want taskmanager and your version of windows doesn't show it with ctrl+alt+del then use ctrl+shift+esc, I think this works on any winNT version
e7
Posts: 92
Joined: Thu Dec 09, 2004 8:32 pm
Location: In Bayern ganz oben

Post by e7 »

Ctrl-Alt-Delete brings TaskManager in XP pro
You can configure that behavior...

The task manager doesn't start if the system is in trouble :(
oiaohm
Posts: 1322
Joined: Sun Dec 12, 2004 8:40 am

Post by oiaohm »

/* Note of typo It should be Ctrl-Shift-ESC every where in here I say ctrl-alt-esc sorry everyone */
ctrl-alt-esc works more often in jam of system on windows XP systems. than control alt delete I stil don't know why.

Ctrl-alt-del was not connected correctly is all I can guess. I know from X11 experence and Linux that Control alt del does not work when X11 is loaded because the applications can block its call to trip the system. If windows has this defect is next to useless as a system recover key.

SysRq ping from the keyboard might be something better to link a plan C to. If ctrl-alt-del fails and ctrl-alt-esc. The one thing that will work only thing that will stop it is a stoped processor. Ie if processor is still processing it will work..

Alt-print screen. Give a SysRq ping. I really don't know why windows decide to over lay this with a window capture(might have been the only way they could do it). It give a call in int 0x16 subfunction 0x85. 100 percent processor usage will not stop this from happing. It built to cope with a frozen system. I use this link to break Linux boxs out of the icestation without rebooting. alt-print screen-letter ie any letter on the keyboard can be used.

Maybe Alt-print screen-z for all else fails task manager. This should not effect general operation of the Alt-printscreen capture. Or linux style
Alt-print screen-t.

Most like linux SysRq key is k kill all applications on current console. Yep stuffed up program looping to hell. Followed up with f terminate heavy memory users. Most of the time the most processor user as well.

http://en.wikipedia.org/wiki/SysRq

At least by what MS did no other app should be using the combination.

Note K is the Secure Access Key combination. Stop users from faking logon screen to get user names and password's. By terminating all user processors even the login screen and restarts the login screen.
Last edited by oiaohm on Fri Dec 29, 2006 12:17 pm, edited 1 time in total.
DGMurdockIII
Posts: 123
Joined: Sat Sep 16, 2006 8:30 pm

Post by DGMurdockIII »

bump
etko
Posts: 154
Joined: Thu May 26, 2005 3:43 am
Location: Slovakia
Contact:

Post by etko »

<CRL>+<SHIFT>+<ESC> - for all taskman noobs ;) - wasn't stressed enough
<WIN>+R - to run something
DGMurdockIII
Posts: 123
Joined: Sat Sep 16, 2006 8:30 pm

NTFS Read/Write Driver

Post by DGMurdockIII »

check out this open source ntfs driver http://www.ntfs-3g.org/
oiaohm
Posts: 1322
Joined: Sun Dec 12, 2004 8:40 am

Post by oiaohm »

People check out that driver quite often.

Its so close to being usable as a base. It has a minor defect that becomes a major problem to run a OS on it. Writing files to the NTFS partition it can stop being able to write. That is a death nail to a OS.

If secuirty permissions are not working perfect that does not stop it from being used. But Writing files must work all the time.

Used as a transfer partition it is fine. Basicly people here are waiting for a defect in it to be fixed so a OS installable NTFS partition can be provided.
phorn
Posts: 3
Joined: Wed Jan 03, 2007 10:01 pm

Post by phorn »

I have found it painful to have to wait for the taskmgr process to be created when a CPU-hungry program is running -- this has sometimes taken as much as 5 minutes if I'm trying to kill an application eating up all CPU.

It seems that Task manager could be embedded in winlogon itself to avoid having to create a new process in a locked-up system.

Also, I wish that it would use the "Winlogon" desktop--Windows's implementation seems buggy in that you have to switch back to the default desktop to kill stuff--which can be nasty if there is a frozen or crazy program that makes it impossible to do anything.

A really good way of solving all of these problems in ReactOS (the way I always wished Ms had done it) is to include in the ctrl-alt-delete screen a menu for "quick kill" or something that would be a really simple, lightweight taskmgr that you could select from inside the winlogon desktop.

Does ReactOS actually have a ctrl-alt-delete screen, or desktop support?
Andrewm1986
Posts: 108
Joined: Thu Jul 07, 2005 4:08 pm

Post by Andrewm1986 »

Mac OS X's equiv of a quick proccess kill is very good. It is not a seperate proccesses and so quite often allows you to kill proccesses quicker.

You can also press cmd+opt+shift+esc for four seconds (clumsy but stops you from doing it by mistake) to force kill the front most app
frik85
Developer
Posts: 829
Joined: Fri Nov 26, 2004 7:48 pm
Location: Austria, Europe
Contact:

Post by frik85 »

A lot more helpful would be a short-cut which terminate the application which consume most CPU and/or memory resources. This would allow user to kill fullscreen apps too. The shortcut function should be implemented in winlogon directly.
Andrewm1986
Posts: 108
Joined: Thu Jul 07, 2005 4:08 pm

Post by Andrewm1986 »

frik85 wrote:A lot more helpful would be a short-cut which terminate the application which consume most CPU and/or memory resources. This would allow user to kill fullscreen apps too. The shortcut function should be implemented in winlogon directly.
I'm encoding a movie and writing a word document in OOo.

OOo crashes, i hit the shortcut .... whoops movie encoding app just closed ;)
counting_pine
Posts: 237
Joined: Fri Nov 26, 2004 10:44 pm
Location: Fallowfield

Post by counting_pine »

Perhaps a better idea would be something that pauses all the processes and brings up a menu, allowing you to choose what to terminate.
Post Reply

Who is online

Users browsing this forum: Google [Bot] and 21 guests