I often get "program not responding" issue on my Windows XP Pro machines during shut down. However, one machine just ignores it and shuts down. But the other essentially freezes until I manually say "end task", and that is very inconvenient.

Is this a known issue? Is this a matter of user specified OS settings, or hardware peculiarities or basically why would something like that happen?

link|improve this question

79% accept rate
I believe this question is more suited for serverfault.com – Salsa Dec 19 '09 at 6:55
feedback

migrated from stackoverflow.com Dec 19 '09 at 6:59

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 2 down vote accepted

This is configurable via a registry setting.

  • Go to Start -> Run and type regedit in the box then press Enter
  • Expand the treeview to:
HKEY_CURRENT_USER\Control Panel\Desktop

If the value AutoEndTasks isn't there already, you can create it. It should be a string value (REG_SZ).

  • Setting it to 0 will disable it (tasks will have to be ended manually)
  • Setting it to 1 will enable it (it will automatically end the programs for you)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.