Computer Forum Forum Index
Register  FAQ Profile Log in to check your private messages Log in Register 

Problem in loading GinaStub.dll

 
Post new topic   Reply to topic    Computer Forum Forum Index -> windowsxp embedded
View previous topic :: View next topic  
Author Message
Roshan R.D
Guest





PostPosted: Wed Dec 12, 2007 12:27 pm    Post subject: Problem in loading GinaStub.dll Reply with quote

Hi All,

I am working on Custom shell, and I want to disable the Ctrl+Alt+Del key, to
do this I have downloaded GinaStub code from XPeFiles.com.
I compiled the code and added the dll under D:\WINDOWS\system32\ginastub.dll
(I have a dual boot system D: is XP embedded for me)
I also added registry key GinaDLL (string value)
HKLM\SOftware\Microsoft\Windows\CurrentVersion\Policies\system
I added the path of ginastub.dll as mentioned above and restarted the
machine.
On next restart I got the error "The Logon Interface DLL
D:\WINDOWS\system32\ginastub.dll failed to load. Contact your system
administrator to replace the dll or restore the original DLL.
Another thing that I want to ask is if I remove taskmgr.exe from system32
and use custom shell, will I be able to override the Ctrl+Alt+Del key? In
short I need to hide the Windows Security popup in my custom shell upon
hitting this key combination.

Thanks & Regards
Roshan.
Back to top
Google
Sponsor





PostPosted: Wed Dec 12, 2007 12:27 pm    Post subject: Advertisement

Back to top
Martin Spence
Guest





PostPosted: Wed Dec 12, 2007 4:38 pm    Post subject: Re: Problem in loading GinaStub.dll Reply with quote

Roshan,

THe only way to do this is as you described with the ginastub or by creating
a keyboard driver that traps the key combination. I had good luck with a
custom shell and the ginastub. The only issue I found was that the
ctrl-alt-del sequence causes a momentary flash of the screen as the sequence
is intercepted and the ginastub returns no action.

By the way - removing taskmgr.exe the ctrl-alt-del will still popup the
windows security dialog - only you will not be able to select the task
manager option.

Hope this helps

Martin.
"Roshan R.D" <RoshanRD@discussions.microsoft.com> wrote in message
news:1BD47108-AAEB-486B-894E-E170A43FB81A@microsoft.com...
Quote:
Hi All,

I am working on Custom shell, and I want to disable the Ctrl+Alt+Del key,
to
do this I have downloaded GinaStub code from XPeFiles.com.
I compiled the code and added the dll under
D:\WINDOWS\system32\ginastub.dll
(I have a dual boot system D: is XP embedded for me)
I also added registry key GinaDLL (string value)
HKLM\SOftware\Microsoft\Windows\CurrentVersion\Policies\system
I added the path of ginastub.dll as mentioned above and restarted the
machine.
On next restart I got the error "The Logon Interface DLL
D:\WINDOWS\system32\ginastub.dll failed to load. Contact your system
administrator to replace the dll or restore the original DLL.
Another thing that I want to ask is if I remove taskmgr.exe from system32
and use custom shell, will I be able to override the Ctrl+Alt+Del key? In
short I need to hide the Windows Security popup in my custom shell upon
hitting this key combination.

Thanks & Regards
Roshan.
Back to top
KM
Guest





PostPosted: Wed Dec 12, 2007 5:36 pm    Post subject: Re: Problem in loading GinaStub.dll Reply with quote

Just to add to this a little bit more.

Please keep in mind that replacing Gina is the solution that will only work for XP/XPe. It won't help you much with the Ctrl-Alt-Del
sequence in Vista if you happened to port your image (applications) to this OS in future.

From my own experience, changes in the keyboard driver is the better and easier to implementation solution, IMHO.

--
=========
Regards,
KM


"Martin Spence" <martinspence@charter.net> wrote in message news:47600f54$0$16836$c3e8da3@news.astraweb.com...
Quote:
Roshan,

THe only way to do this is as you described with the ginastub or by creating a keyboard driver that traps the key combination. I
had good luck with a custom shell and the ginastub. The only issue I found was that the ctrl-alt-del sequence causes a momentary
flash of the screen as the sequence is intercepted and the ginastub returns no action.

By the way - removing taskmgr.exe the ctrl-alt-del will still popup the windows security dialog - only you will not be able to
select the task manager option.

Hope this helps

Martin.
"Roshan R.D" <RoshanRD@discussions.microsoft.com> wrote in message news:1BD47108-AAEB-486B-894E-E170A43FB81A@microsoft.com...
Hi All,

I am working on Custom shell, and I want to disable the Ctrl+Alt+Del key, to
do this I have downloaded GinaStub code from XPeFiles.com.
I compiled the code and added the dll under D:\WINDOWS\system32\ginastub.dll
(I have a dual boot system D: is XP embedded for me)
I also added registry key GinaDLL (string value)
HKLM\SOftware\Microsoft\Windows\CurrentVersion\Policies\system
I added the path of ginastub.dll as mentioned above and restarted the
machine.
On next restart I got the error "The Logon Interface DLL
D:\WINDOWS\system32\ginastub.dll failed to load. Contact your system
administrator to replace the dll or restore the original DLL.
Another thing that I want to ask is if I remove taskmgr.exe from system32
and use custom shell, will I be able to override the Ctrl+Alt+Del key? In
short I need to hide the Windows Security popup in my custom shell upon
hitting this key combination.

Thanks & Regards
Roshan.


Back to top
Roshan R.D
Guest





PostPosted: Thu Dec 13, 2007 3:06 am    Post subject: Re: Problem in loading GinaStub.dll Reply with quote

Thanks Martin and KM for your reply,

Martin, will you please help me with your ginastub code, where did you get
this code code from? Can you please provide me the link from where you have
got this code from? (I read on internet that ginastub on Microsoft site has
some problem.)

KM, can you help me with the link to get the code for keyboard driver.

Many Thanks
Roshan

"KM" wrote:

Quote:
Just to add to this a little bit more.

Please keep in mind that replacing Gina is the solution that will only work for XP/XPe. It won't help you much with the Ctrl-Alt-Del
sequence in Vista if you happened to port your image (applications) to this OS in future.

From my own experience, changes in the keyboard driver is the better and easier to implementation solution, IMHO.

--
=========
Regards,
KM


"Martin Spence" <martinspence@charter.net> wrote in message news:47600f54$0$16836$c3e8da3@news.astraweb.com...
Roshan,

THe only way to do this is as you described with the ginastub or by creating a keyboard driver that traps the key combination. I
had good luck with a custom shell and the ginastub. The only issue I found was that the ctrl-alt-del sequence causes a momentary
flash of the screen as the sequence is intercepted and the ginastub returns no action.

By the way - removing taskmgr.exe the ctrl-alt-del will still popup the windows security dialog - only you will not be able to
select the task manager option.

Hope this helps

Martin.
"Roshan R.D" <RoshanRD@discussions.microsoft.com> wrote in message news:1BD47108-AAEB-486B-894E-E170A43FB81A@microsoft.com...
Hi All,

I am working on Custom shell, and I want to disable the Ctrl+Alt+Del key, to
do this I have downloaded GinaStub code from XPeFiles.com.
I compiled the code and added the dll under D:\WINDOWS\system32\ginastub.dll
(I have a dual boot system D: is XP embedded for me)
I also added registry key GinaDLL (string value)
HKLM\SOftware\Microsoft\Windows\CurrentVersion\Policies\system
I added the path of ginastub.dll as mentioned above and restarted the
machine.
On next restart I got the error "The Logon Interface DLL
D:\WINDOWS\system32\ginastub.dll failed to load. Contact your system
administrator to replace the dll or restore the original DLL.
Another thing that I want to ask is if I remove taskmgr.exe from system32
and use custom shell, will I be able to override the Ctrl+Alt+Del key? In
short I need to hide the Windows Security popup in my custom shell upon
hitting this key combination.

Thanks & Regards
Roshan.





Back to top
KM
Guest





PostPosted: Thu Dec 13, 2007 3:52 am    Post subject: Re: Problem in loading GinaStub.dll Reply with quote

Roshan,

Sample keyboard driver code can be found in WIndows DDK.

--
=========
Regards,
KM

Quote:
Thanks Martin and KM for your reply,

Martin, will you please help me with your ginastub code, where did you get
this code code from? Can you please provide me the link from where you have
got this code from? (I read on internet that ginastub on Microsoft site has
some problem.)

KM, can you help me with the link to get the code for keyboard driver.

Many Thanks
Roshan

"KM" wrote:

Just to add to this a little bit more.

Please keep in mind that replacing Gina is the solution that will only work for XP/XPe. It won't help you much with the
Ctrl-Alt-Del
sequence in Vista if you happened to port your image (applications) to this OS in future.

From my own experience, changes in the keyboard driver is the better and easier to implementation solution, IMHO.

--
=========
Regards,
KM


"Martin Spence" <martinspence@charter.net> wrote in message news:47600f54$0$16836$c3e8da3@news.astraweb.com...
Roshan,

THe only way to do this is as you described with the ginastub or by creating a keyboard driver that traps the key combination.
I
had good luck with a custom shell and the ginastub. The only issue I found was that the ctrl-alt-del sequence causes a
momentary
flash of the screen as the sequence is intercepted and the ginastub returns no action.

By the way - removing taskmgr.exe the ctrl-alt-del will still popup the windows security dialog - only you will not be able to
select the task manager option.

Hope this helps

Martin.
"Roshan R.D" <RoshanRD@discussions.microsoft.com> wrote in message news:1BD47108-AAEB-486B-894E-E170A43FB81A@microsoft.com...
Hi All,

I am working on Custom shell, and I want to disable the Ctrl+Alt+Del key, to
do this I have downloaded GinaStub code from XPeFiles.com.
I compiled the code and added the dll under D:\WINDOWS\system32\ginastub.dll
(I have a dual boot system D: is XP embedded for me)
I also added registry key GinaDLL (string value)
HKLM\SOftware\Microsoft\Windows\CurrentVersion\Policies\system
I added the path of ginastub.dll as mentioned above and restarted the
machine.
On next restart I got the error "The Logon Interface DLL
D:\WINDOWS\system32\ginastub.dll failed to load. Contact your system
administrator to replace the dll or restore the original DLL.
Another thing that I want to ask is if I remove taskmgr.exe from system32
and use custom shell, will I be able to override the Ctrl+Alt+Del key? In
short I need to hide the Windows Security popup in my custom shell upon
hitting this key combination.

Thanks & Regards
Roshan.





Back to top
Display posts from previous:   
Post new topic   Reply to topic    Computer Forum Forum Index -> windowsxp embedded All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Computer Forum