Results 1 to 5 of 5

Thread: Removing my program from CTRL-ALT-DEL List

  1. #1

    Thread Starter
    Frenzied Member mxnmx's Avatar
    Join Date
    Dec 2001
    Location
    I'm back...now!!!
    Posts
    1,396

    Removing my program from CTRL-ALT-DEL List

    I have a program, when I run it & press CTRL-ALT-DEL I can see it in the Task Manager, but I dont want it to appear there. How can I make this happen? Please help me & can I do it for a program like MS WORD or Internet EXPLORER. Or can I write another program that starts MS WORD and disables it from CTRL-ALT-DEL List.

    Thanks

  2. #2
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373
    PSC has that code.. or someone will post it here.. just know that on NT based OSs 2k, XP.. your exe will still appear in the processes list

  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    For Win9x

    VB Code:
    1. Private Const RSP_SIMPLE_SERVICE = 1
    2. Private Const RSP_UNREGISTER_SERVICE = 0
    3.  
    4. Private Declare Function GetCurrentProcessId Lib "kernel32" () As Long
    5. Private Declare Function RegisterServiceProcess Lib "kernel32" (ByVal dwProcessID As Long, ByVal dwType As Long) As Long
    6.  
    7.  
    8. Private Sub HideApp()
    9.     Dim process As Long
    10.     process = GetCurrentProcessId()
    11.     Call RegisterServiceProcess(process, RSP_SIMPLE_SERVICE)
    12. End Sub
    13.  
    14. Private Sub UnHideApp()
    15.     Dim process As Long
    16.     process = GetCurrentProcessId()
    17.     Call RegisterServiceProcess(process, RSP_UNREGISTER_SERVICE)
    18. End Sub

  4. #4
    The picture isn't missing BuggyProgrammer's Avatar
    Join Date
    Oct 2000
    Location
    Vancouver, Canada
    Posts
    5,217
    for NT Os', use:

    App.TaskVisible = False

    and that would remove it from 'Applications' tab, and ifyou named the EXE to a service name (svchost.exe, services.exe, lsass.exe etc.), they will not be able to End Process from the 'Processes' tab.
    Remember, if someone's post was not helpful, you can always rate their post negatively .

  5. #5

    Thread Starter
    Frenzied Member mxnmx's Avatar
    Join Date
    Dec 2001
    Location
    I'm back...now!!!
    Posts
    1,396
    Thanks so much for that...Please help me on that MS WORD issue as well...What I'm looking at here is, if someone starts MS WORD, I dont want it to appear in the Applications TAB. So I was thinking may be to write a small program and users start MS WORD using that program. And if MS WORD IS started using that program it doesnt appear in Applications TAB...and if a user starts it the normal way it can appear...I was thinking along those lines...could you please suggest me...how to go about it?
    Thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width