MSFN Forum: Lost my CTRL-ALT-DELETE function - MSFN Forum

Jump to content


If you are having issues with Windows after removing components and have come to ask for help, please attach (not paste) your Last Session.ini file to your post to facilitate quicker assistance.
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Lost my CTRL-ALT-DELETE function Rate Topic: -----

#1 User is offline   gnolivos 

  • Group: Members
  • Posts: 6
  • Joined: 03-October 11
  • OS:none specified
  • Country: Country Flag

Posted 04 October 2011 - 01:58 PM

Ok, don't kill me guys... i searched but found nothing...

I have made a custom nLite install for XP SP3. I did edit a number of things, and now when I install the OS, and hit CTRL-ALT-DEL it does nothing. I can still get to task manager by right clicking on task bar, but still need the keyboard functionality (long story...)

What could I have misconfigured that removed this feature? I saw strl-alt-del for logon screen, but that seems something else (I removed that feature btw).

Pointers?


#2 User is offline   -X- 

  • Member
  • Group: Patrons
  • Posts: 2,050
  • Joined: 08-January 04
  • OS:XP Pro x86
  • Country: Country Flag

Posted 04 October 2011 - 02:08 PM

I don't think nLite can remove that functionality. Test your keyboard here: http://gate2home.com/English-Keyboard . Press one key at a time.

#3 User is offline   allen2 

  • Not really Newbie
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,737
  • Joined: 13-January 06

Posted 04 October 2011 - 03:27 PM

See there to know how to disable/enable ctrl-alt-del (use search in this big page).
It also have a link to a vbs to toggle ctrl-alt-del functionnality on/off:
Option Explicit

Dim WSHShell, RegKey, ScreenSaver, Result

Set WSHShell = CreateObject("WScript.Shell")

RegKey = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\"

ScreenSaver = WSHShell.RegRead (regkey & "DisableCAD")

If ScreenSaver = 0 Then 'Ctrl/Alt/Delete is Enabled.

   Result = MsgBox("Ctrl/Alt/Delete is currently active." & _ 
        vbNewLine & "Would you like to disable it?", 36)

   If Result = 6 Then 'clicked yes
      WSHShell.RegWrite regkey & "DisableCAD", 1
   End If

Else 'Ctrl/Alt/Delete is Disabled

   Result = MsgBox("Ctrl/Alt/Delete is currently disabled." & _ 
        vbNewLine & "Would you like to enable it?", 36)

   If Result = 6 Then 'clicked yes
      WSHShell.RegWrite regkey & "DisableCAD", 0
   End If

End If


So just looking in the registry "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\" and check if a value named DisableCAD exist and is set to 1 should be enough and of course to enable Ctrl-alt-del again, set it to 0 and reboot.
Edit reason: I just saw that this key is more related to ctrl-alt-del before login so it might not work.

This post has been edited by allen2: 04 October 2011 - 03:40 PM


#4 User is offline   gnolivos 

  • Group: Members
  • Posts: 6
  • Joined: 03-October 11
  • OS:none specified
  • Country: Country Flag

Posted 06 October 2011 - 06:49 AM

OK I figured it out... the problem is caused by MINLOGON.... I had integrated the minlogon hotfix into my install, and this reportedly disables Ctrl-Alt-Delete to access the task manager.

#5 User is offline   submix8c 

  • Inconceivable!
  • Group: Patrons
  • Posts: 3,247
  • Joined: 14-September 05
  • OS:none specified
  • Country: Country Flag

Posted 06 October 2011 - 08:16 AM

Not really sure why you would want MinLogon...
This tells why (that at least I wouldn't want it).

#6 User is offline   gnolivos 

  • Group: Members
  • Posts: 6
  • Joined: 03-October 11
  • OS:none specified
  • Country: Country Flag

Posted 06 October 2011 - 08:50 AM

You answered you own question with that link.

"Minlogon can be beneficial for devices on which user access to the underlying file system is limited"


I am using this for a MAME cabinet...

View Postsubmix8c, on 06 October 2011 - 08:16 AM, said:

Not really sure why you would want MinLogon...
This tells why (that at least I wouldn't want it).


#7 User is offline   jaclaz 

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

Posted 06 October 2011 - 08:51 AM

View Postgnolivos, on 06 October 2011 - 06:49 AM, said:

OK I figured it out... the problem is caused by MINLOGON.... I had integrated the minlogon hotfix into my install, and this reportedly disables Ctrl-Alt-Delete to access the task manager.

BUT you can re-enable it ;) with a little proggie:
http://www.mp3car.co...h-minlogon.html


@submix8c
and this tells you why you may want it:
http://msdn.microsof...mbedded.5).aspx

Quote

Security

It is important to understand that MinLogon will never prompt a user for login credentials such as a user name or password. In addition, MinLogon does not include support for an Administrator account and has no concept of user accounts or privileges to the local machine's file system or resources. MinLogon also does not have a concept of global users or accounts and cannot be joined to a domain. Embedded designs that require domain participation support should use WinLogon.

With MinLogon, users have unlimited power over the system, much like the Administrator account has in typical Windows XP Professional installations. Users will be able to delete or modify the files, settings, and services of the system as they want. However, this does not mean that MinLogon completely lacks security mechanisms; rather, it means that security features that were inherited and enabled by default under a WinLogon configuration must be incorporated into a MinLogon design if security is desired. Developers using MinLogon in their embedded designs must be conscious of this fact, and proactively take measures to block access to exposed areas of the operating system.

Conversely, a locked down MinLogon system could be considered more secure than a locked-down WinLogon system because there is no "back door" such as an Administrator or Guest account to hack into. But beware that once all the doors are locked, there is no back door for even the creator of the runtime image to enter.


Another interesting question would be about a non-Commercial user (allowed to use nlite) using a Commercial (and highly priced) XP Embedded. :unsure:
:whistle:
I know very few people that have bought an XP Embedded license for non-Commercial use. (actually noone, I must definitely enlarge the circle of my acquaintenances ;))



jaclaz

This post has been edited by jaclaz: 06 October 2011 - 09:07 AM


#8 User is offline   submix8c 

  • Inconceivable!
  • Group: Patrons
  • Posts: 3,247
  • Joined: 14-September 05
  • OS:none specified
  • Country: Country Flag

Posted 06 October 2011 - 12:36 PM

(Sub)Link given was to point out "why?" (a/l for me) for an nLite-ed. Aware of the "difference" and the MAME reference...

Guess the OP must have some oddball reason for wanting to include it... A minimal "tools" partition maybe? (I just use LiveXP.)

#9 User is offline   jaclaz 

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

Posted 06 October 2011 - 12:53 PM

View Postsubmix8c, on 06 October 2011 - 12:36 PM, said:

A minimal "tools" partition maybe? (I just use LiveXP.)

To each his own. :thumbup
My "minimal tools partition" is "more minimal" :w00t: than yours. ;)

jaclaz

#10 User is offline   hika23 

  • Group: Members
  • Posts: 1
  • Joined: 27-March 12
  • OS:none specified
  • Country: Country Flag

Posted 27 March 2012 - 08:34 AM

I turned CTRL-ALT-DEL off at 3 yrs old.
My uncle couldn't fix it.
at least that's what my mom says. :rolleyes:

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 - 2013 msfn.org
Privacy Policy