Lost my CTRL-ALT-DELETE function
#1
Posted 04 October 2011 - 01:58 PM
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
Posted 04 October 2011 - 02:08 PM
#3
Posted 04 October 2011 - 03:27 PM
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
Posted 06 October 2011 - 06:49 AM
#5
Posted 06 October 2011 - 08:16 AM
#6
#7
Posted 06 October 2011 - 08:51 AM
gnolivos, on 06 October 2011 - 06:49 AM, said:
BUT you can re-enable it
http://www.mp3car.co...h-minlogon.html
@submix8c
and this tells you why you may want it:
http://msdn.microsof...mbedded.5).aspx
Quote
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.
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
Posted 06 October 2011 - 12:36 PM
Guess the OP must have some oddball reason for wanting to include it... A minimal "tools" partition maybe? (I just use LiveXP.)
#9
Posted 06 October 2011 - 12:53 PM
#10
Posted 27 March 2012 - 08:34 AM
My uncle couldn't fix it.
at least that's what my mom says.



Help
Back to top









