Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Before The System

Before The System

Scheduled Pinned Locked Moved C / C++ / MFC
questionsysadmin
9 Posts 6 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    The_Server
    wrote on last edited by
    #1

    Hi, all!!! Does anyone know how can I catch CTRL+ALT+DEL before the system (win 2000)? 10x. BTW: for some of you that wished for CodeProject irc server I create a channle on DalNet called "#CodeProject"

    A L M M 4 Replies Last reply
    0
    • T The_Server

      Hi, all!!! Does anyone know how can I catch CTRL+ALT+DEL before the system (win 2000)? 10x. BTW: for some of you that wished for CodeProject irc server I create a channle on DalNet called "#CodeProject"

      A Offline
      A Offline
      Anders Molin
      wrote on last edited by
      #2

      To be honest I don't think it's possible on Win2k... for some of you that wished for CodeProject irc server I create a channel on DalNet called "#CodeProject" Yea, just sad it's always empty...:(( - Anders Money talks, but all mine ever says is "Goodbye!"

      T 1 Reply Last reply
      0
      • T The_Server

        Hi, all!!! Does anyone know how can I catch CTRL+ALT+DEL before the system (win 2000)? 10x. BTW: for some of you that wished for CodeProject irc server I create a channle on DalNet called "#CodeProject"

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #3

        You probably have to replace som input DLL( _very_ dangerous ). What if the user installs a servicepack?

        T 1 Reply Last reply
        0
        • T The_Server

          Hi, all!!! Does anyone know how can I catch CTRL+ALT+DEL before the system (win 2000)? 10x. BTW: for some of you that wished for CodeProject irc server I create a channle on DalNet called "#CodeProject"

          M Offline
          M Offline
          Mukkie
          wrote on last edited by
          #4

          Look at Gina in msdn. Maybe low level keyboard hook may help: SetWindowsHookEx ??

          1 Reply Last reply
          0
          • A Anders Molin

            To be honest I don't think it's possible on Win2k... for some of you that wished for CodeProject irc server I create a channel on DalNet called "#CodeProject" Yea, just sad it's always empty...:(( - Anders Money talks, but all mine ever says is "Goodbye!"

            T Offline
            T Offline
            The_Server
            wrote on last edited by
            #5

            :(( yeah I know :(( but if people will come and stay instad of come and go. then this place will NOT be empty. :) BTW: for some of you that wished for CodeProject irc server I create a channle on DalNet called "#CodeProject"

            1 Reply Last reply
            0
            • L Lost User

              You probably have to replace som input DLL( _very_ dangerous ). What if the user installs a servicepack?

              T Offline
              T Offline
              The_Server
              wrote on last edited by
              #6

              I have service pake 3, and I don't really know what it means ?:confused: BTW: for some of you that wished for CodeProject irc server I create a channle on DalNet called "#CodeProject"

              1 Reply Last reply
              0
              • T The_Server

                Hi, all!!! Does anyone know how can I catch CTRL+ALT+DEL before the system (win 2000)? 10x. BTW: for some of you that wished for CodeProject irc server I create a channle on DalNet called "#CodeProject"

                M Offline
                M Offline
                mProject
                wrote on last edited by
                #7

                Hi, I had problem of CTRL+ALT+DEL last few days. I searched discussion board for that but didnot found proper solution. I only found that use Gina Dll inplace of microsoft's MSGina.dll. That is not proper solution. Now i solved my purpose to disable CTRL+ALT+DEL in win2000. I don't know about WinNT but it will work for it also. So i want to contribute this part to all user. Steps are as follows : 1. Open Microsoft SDK Examples. In That Example, Open GinaStub example. 2. Find function int WINAPI WlxLoggedOnSAS( PVOID pWlxContext, DWORD dwSasType, PVOID pReserved ) 3. In this function remove all code written and only return like this return WLX_SAS_ACTION_NONE; 4. So it looks like this... int WINAPI WlxLoggedOnSAS( PVOID pWlxContext, DWORD dwSasType, PVOID pReserved ) { return WLX_SAS_ACTION_NONE; // Return code for doing nothing ... return to desktop } 5. Now Make dll. 6. Goto Registry by regedit. 7. goto \HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon (WindowsNT is also there. So dont confused it is | Windows(Space)NT | okay) 8. Make New string value and give data like this name : GinaDLL Type : REG_SZ Data : C:\WinNT\System32\mygina.dll (path of your gina dll(suppose mygina.dll)) 9. Reboot computer And your control+alter+delete not worked at all. ---------------------------------------------------------------------------------------- If You want this mygina.dll then contact me on my personal email address. manish_ld@rediffmail.com m_codeproject@rediffmail.com if still not contact me then and then try : pansiniya_manish@hotmail.com ---------------------------------------------------------------------------------------- Thanx in advance. :rolleyes: :laugh: :mad: :-O :rose: :rose: :rose: -------------------------------------------------- Say Whatever You Know. Helping other people is good for health. ========= Manish ========= ---------------------------------------------------

                M 2 Replies Last reply
                0
                • M mProject

                  Hi, I had problem of CTRL+ALT+DEL last few days. I searched discussion board for that but didnot found proper solution. I only found that use Gina Dll inplace of microsoft's MSGina.dll. That is not proper solution. Now i solved my purpose to disable CTRL+ALT+DEL in win2000. I don't know about WinNT but it will work for it also. So i want to contribute this part to all user. Steps are as follows : 1. Open Microsoft SDK Examples. In That Example, Open GinaStub example. 2. Find function int WINAPI WlxLoggedOnSAS( PVOID pWlxContext, DWORD dwSasType, PVOID pReserved ) 3. In this function remove all code written and only return like this return WLX_SAS_ACTION_NONE; 4. So it looks like this... int WINAPI WlxLoggedOnSAS( PVOID pWlxContext, DWORD dwSasType, PVOID pReserved ) { return WLX_SAS_ACTION_NONE; // Return code for doing nothing ... return to desktop } 5. Now Make dll. 6. Goto Registry by regedit. 7. goto \HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon (WindowsNT is also there. So dont confused it is | Windows(Space)NT | okay) 8. Make New string value and give data like this name : GinaDLL Type : REG_SZ Data : C:\WinNT\System32\mygina.dll (path of your gina dll(suppose mygina.dll)) 9. Reboot computer And your control+alter+delete not worked at all. ---------------------------------------------------------------------------------------- If You want this mygina.dll then contact me on my personal email address. manish_ld@rediffmail.com m_codeproject@rediffmail.com if still not contact me then and then try : pansiniya_manish@hotmail.com ---------------------------------------------------------------------------------------- Thanx in advance. :rolleyes: :laugh: :mad: :-O :rose: :rose: :rose: -------------------------------------------------- Say Whatever You Know. Helping other people is good for health. ========= Manish ========= ---------------------------------------------------

                  M Offline
                  M Offline
                  Manish Pansiniya
                  wrote on last edited by
                  #8

                  Hello, My email address is changed. Changed email address is : manish_ld@yahoo.com. Please mail on this address for gina.dll. Enjoy~!!!

                  1 Reply Last reply
                  0
                  • M mProject

                    Hi, I had problem of CTRL+ALT+DEL last few days. I searched discussion board for that but didnot found proper solution. I only found that use Gina Dll inplace of microsoft's MSGina.dll. That is not proper solution. Now i solved my purpose to disable CTRL+ALT+DEL in win2000. I don't know about WinNT but it will work for it also. So i want to contribute this part to all user. Steps are as follows : 1. Open Microsoft SDK Examples. In That Example, Open GinaStub example. 2. Find function int WINAPI WlxLoggedOnSAS( PVOID pWlxContext, DWORD dwSasType, PVOID pReserved ) 3. In this function remove all code written and only return like this return WLX_SAS_ACTION_NONE; 4. So it looks like this... int WINAPI WlxLoggedOnSAS( PVOID pWlxContext, DWORD dwSasType, PVOID pReserved ) { return WLX_SAS_ACTION_NONE; // Return code for doing nothing ... return to desktop } 5. Now Make dll. 6. Goto Registry by regedit. 7. goto \HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon (WindowsNT is also there. So dont confused it is | Windows(Space)NT | okay) 8. Make New string value and give data like this name : GinaDLL Type : REG_SZ Data : C:\WinNT\System32\mygina.dll (path of your gina dll(suppose mygina.dll)) 9. Reboot computer And your control+alter+delete not worked at all. ---------------------------------------------------------------------------------------- If You want this mygina.dll then contact me on my personal email address. manish_ld@rediffmail.com m_codeproject@rediffmail.com if still not contact me then and then try : pansiniya_manish@hotmail.com ---------------------------------------------------------------------------------------- Thanx in advance. :rolleyes: :laugh: :mad: :-O :rose: :rose: :rose: -------------------------------------------------- Say Whatever You Know. Helping other people is good for health. ========= Manish ========= ---------------------------------------------------

                    M Offline
                    M Offline
                    Manish Pansiniya
                    wrote on last edited by
                    #9

                    Hello, My email address is changed. Changed email address is : manish_ld@yahoo.com. Please mail on this address for gina.dll. Enjoy~!!!

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups