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#
  4. Prevent my application from End Process

Prevent my application from End Process

Scheduled Pinned Locked Moved C#
csharphelptutorial
8 Posts 7 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.
  • V Offline
    V Offline
    vasanth arivali
    wrote on last edited by
    #1

    I create a application for the track the browsing centers with their ip address. 1) First they install my application in their system then only they access the Internet. 2) Second they could not kill my process because if they kill my process i could not track them. 3) So how to prevent my application process from End Process in Task Manager and also hide my application process from the Task Manager and System Tray. They also Uninstall my application without my permission. How it is possible using C# code. plz help me with your useful ideas. Thanks, Vasanth.A

    B C J I P 5 Replies Last reply
    0
    • V vasanth arivali

      I create a application for the track the browsing centers with their ip address. 1) First they install my application in their system then only they access the Internet. 2) Second they could not kill my process because if they kill my process i could not track them. 3) So how to prevent my application process from End Process in Task Manager and also hide my application process from the Task Manager and System Tray. They also Uninstall my application without my permission. How it is possible using C# code. plz help me with your useful ideas. Thanks, Vasanth.A

      B Offline
      B Offline
      Blikkies
      wrote on last edited by
      #2

      Disable Task Mgr. using Microsoft.Win32

      modified on Tuesday, July 28, 2009 3:49 AM

      1 Reply Last reply
      0
      • V vasanth arivali

        I create a application for the track the browsing centers with their ip address. 1) First they install my application in their system then only they access the Internet. 2) Second they could not kill my process because if they kill my process i could not track them. 3) So how to prevent my application process from End Process in Task Manager and also hide my application process from the Task Manager and System Tray. They also Uninstall my application without my permission. How it is possible using C# code. plz help me with your useful ideas. Thanks, Vasanth.A

        C Offline
        C Offline
        Christian Graus
        wrote on last edited by
        #3

        vasanth arivali wrote:

        How it is possible using C# code. plz help me with your useful ideas.

        There is absolutely no way this is possible. The only way to do it, is to set the machine your code is running on so that the login people use, does not have access to task manager, or add/remove programs. Otherwise, it's a fantasy. There are things you could try, but all, by definition, can be defeated.

        Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.

        1 Reply Last reply
        0
        • V vasanth arivali

          I create a application for the track the browsing centers with their ip address. 1) First they install my application in their system then only they access the Internet. 2) Second they could not kill my process because if they kill my process i could not track them. 3) So how to prevent my application process from End Process in Task Manager and also hide my application process from the Task Manager and System Tray. They also Uninstall my application without my permission. How it is possible using C# code. plz help me with your useful ideas. Thanks, Vasanth.A

          J Offline
          J Offline
          J4amieC
          wrote on last edited by
          #4

          ...you'll not get help here writing malware.

          C 1 Reply Last reply
          0
          • J J4amieC

            ...you'll not get help here writing malware.

            C Offline
            C Offline
            Christian Graus
            wrote on last edited by
            #5

            His explanation is plausible, and it sounds like the sort of job that would be farmed off to the third world and end up in the lap of someone who didn't know enough to know that it's not possible. I mean, who else but a third world outsourcer would commit to writing this, THEN try to find out if it's possible or not ?

            Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.

            D 1 Reply Last reply
            0
            • C Christian Graus

              His explanation is plausible, and it sounds like the sort of job that would be farmed off to the third world and end up in the lap of someone who didn't know enough to know that it's not possible. I mean, who else but a third world outsourcer would commit to writing this, THEN try to find out if it's possible or not ?

              Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.

              D Offline
              D Offline
              DoctorMick
              wrote on last edited by
              #6

              That is a very very small minded opinion! Plenty of development shops in all countrys have a track record of commiting to things without knowing if they are feasible.

              1 Reply Last reply
              0
              • V vasanth arivali

                I create a application for the track the browsing centers with their ip address. 1) First they install my application in their system then only they access the Internet. 2) Second they could not kill my process because if they kill my process i could not track them. 3) So how to prevent my application process from End Process in Task Manager and also hide my application process from the Task Manager and System Tray. They also Uninstall my application without my permission. How it is possible using C# code. plz help me with your useful ideas. Thanks, Vasanth.A

                I Offline
                I Offline
                Ian Shlasko
                wrote on last edited by
                #7

                Easy, in part... If you're a network admin writing something for a bunch of users on an Intranet, write it as a system service (Running as the System account), and don't give your users administrator rights. Then they won't be able to kill the process, or uninstall it... It will still show up in Task Manager, and there's nothing you can do about that. Other than that, you're pretty much out of luck. No one here is going to help you write malware, or anything that acts similarly.

                Proud to have finally moved to the A-Ark. Which one are you in? Developer, Author (Guardians of Xen)

                1 Reply Last reply
                0
                • V vasanth arivali

                  I create a application for the track the browsing centers with their ip address. 1) First they install my application in their system then only they access the Internet. 2) Second they could not kill my process because if they kill my process i could not track them. 3) So how to prevent my application process from End Process in Task Manager and also hide my application process from the Task Manager and System Tray. They also Uninstall my application without my permission. How it is possible using C# code. plz help me with your useful ideas. Thanks, Vasanth.A

                  P Offline
                  P Offline
                  PIEBALDconsult
                  wrote on last edited by
                  #8

                  Is that the sort of thing you want running on your system?

                  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