Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How can disable "CTRL+ALT+DEL" on the XPE?

386 views
Skip to first unread message

bug

unread,
Aug 29, 2005, 4:03:55 AM8/29/05
to
i want disable "CTRL+ALT+DEL" on the XPE? what can i do?

thank you


Mike Warren

unread,
Aug 29, 2005, 5:53:57 AM8/29/05
to
bug wrote:
> i want disable "CTRL+ALT+DEL" on the XPE? what can i do?

I think the only way is with a custom msgina.dll.

Ctlr+Alt+Del doesn't do anything on my images. I have used
MinLogon and not included task manager.

-Mike

Frank van der Heijden

unread,
Aug 29, 2005, 8:47:44 AM8/29/05
to

KM

unread,
Aug 29, 2005, 2:05:42 PM8/29/05
to
bug,

Download and modify Ginastub.dll to block CTRL+ALT+DEL.
A sample Ginastub code you find on www.xpefiles.com or www.codeprojects.com.

Also, you can search this NG archive (http://groups.google.com/group/microsoft.public.windowsxp.embedded?hl=en&lr=&ie=UTF-8) to see
more posts about the problem.
IIRC, even some code has been posted here.

--
Regards,
KM

bug

unread,
Aug 29, 2005, 11:12:59 PM8/29/05
to
i in reg find two regkey!
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
DisableCAD and DisableCtrlAltDel
what is function top two key?
thank you!!!


KM

unread,
Aug 30, 2005, 12:34:40 AM8/30/05
to
bug,

The DisableCAD value determines whether users must press the CTRL+ALT+DEL key sequence to log on to Windows.
If the value of this entry is 0, the "Log On to Windows" dialog box is displayed as soon as the system starts. If the value of this
entry is 1, the Windows splash screen with the "Press Ctrl-Alt-Delete to

begin" message is suppressed.

I never heard of DisableCtrlAltDel value.

--
Regards,
KM

XPEnew

unread,
Aug 30, 2005, 7:47:21 PM8/30/05
to

I set both value to 1, now that box is gone. ;-)

"bug" <tan...@vst-china.com> wrote in message
news:OQhgnBRr...@tk2msftngp13.phx.gbl...

David Harris

unread,
Sep 5, 2005, 4:09:18 AM9/5/05
to
"bug" <tan...@vst-china.com> wrote in message
news:u4cLi$GrFHA...@TK2MSFTNGP14.phx.gbl...

>i want disable "CTRL+ALT+DEL" on the XPE? what can i do?

There is an undocumented way to disable CTRL-ALT-DEL on Windows NT/2000/XP using
the registry. I have got this to work successfully on XPe SP2 using WinLogon.

The key,
'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon\AutoAdminLogon (REG_SZ)'
is only supposed to have two legal values (according to Microsoft) "0" and "1".
"0" disables automatic logon of the account stored, and "1" enables it. However
if you set the key to "2", it will enable automatic logon AND disable CTRL + ALT
+ DEL sequence registration by windows on boot, effectively disabling Task
Manager, etc..

WARNING:
So that automatic logon works you will also have to set the "DefaultUserName"
and "DefaultPassword" values to the correct username & password. If you do not
set these correctly then you can end up with a machine you cannot get access to.

Again, here are the keys needed to be set:

* HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon :
AutoAdminLogon = "2"

* HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon :
DefaultUserName = "(the username to automatically logon)"

* HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon :
DefaultPassword = "(password for default username)"

NOTE:
I added a RunOnce action to the build to add the AutoAdminLogon entry to the
registry. However when I combined that with the 'Automatic logon' component
and built an image I ended up with an empty registry string for the autologon
username and autologon turned off (set to zero). The simplest solution
was to remove or disable Automatic Logon in the configuration, then put the
autologon username and password in the registry patch and let the RunOnce
action patch the registry with the correct autologon settings as well as
the CTRL-ALT-DEL fix.


0 new messages