473,806 Members | 2,594 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Hide process or automatically restart it

Does anyone know how to hide a c# application from the process list (Win 2k,
XP etc.)?
Or if this is 'impossible', how can I let my application automatically
restart when it gets killed?
Nov 15 '05 #1
4 9837
Hi,
Check this link.....IT has different methods to hide the process
http://www.experts-exchange.com/Prog..._20827717.html

--
Rami Saad
Microsoft GTSC Developer support for Middle East
"G. van den Broek" <gi********@hot mail.com> wrote in message
news:c1******** **@news2.tilbu1 .nb.home.nl...
Does anyone know how to hide a c# application from the process list (Win 2k, XP etc.)?
Or if this is 'impossible', how can I let my application automatically
restart when it gets killed?

Nov 15 '05 #2
Thanks, but that only works on Win 9x based systems.

I'm actually looking for a way to hide my process from the processes tab on
the task manager (like in Windows 2000 and XP). Or a way to make my program
automatically restart when it gets killed either by the user.

"Rami Saad" <ra*******@egds c.microsoft.com > wrote in message
news:uK******** ********@tk2msf tngp13.phx.gbl. ..
Hi,
Check this link.....IT has different methods to hide the process
http://www.experts-exchange.com/Prog..._20827717.html
--
Rami Saad
Microsoft GTSC Developer support for Middle East
"G. van den Broek" <gi********@hot mail.com> wrote in message
news:c1******** **@news2.tilbu1 .nb.home.nl...
Does anyone know how to hide a c# application from the process list (Win

2k,
XP etc.)?
Or if this is 'impossible', how can I let my application automatically
restart when it gets killed?


Nov 15 '05 #3
I really hope it isn't possible to hide it. I can't say any reason in which
it would be good to hide it.

I haven't tried it yet, but when the program is closed an event is normally
fired, can't you use that event to create a new instance of your app before
fully closing down the current instance?

Y

"G. van den Broek" <gi********@hot mail.com> schreef in bericht
news:c1******** **@news3.tilbu1 .nb.home.nl...
Thanks, but that only works on Win 9x based systems.

I'm actually looking for a way to hide my process from the processes tab on the task manager (like in Windows 2000 and XP). Or a way to make my program automatically restart when it gets killed either by the user.

"Rami Saad" <ra*******@egds c.microsoft.com > wrote in message
news:uK******** ********@tk2msf tngp13.phx.gbl. ..
Hi,
Check this link.....IT has different methods to hide the process

http://www.experts-exchange.com/Prog..._20827717.html

--
Rami Saad
Microsoft GTSC Developer support for Middle East
"G. van den Broek" <gi********@hot mail.com> wrote in message
news:c1******** **@news2.tilbu1 .nb.home.nl...
Does anyone know how to hide a c# application from the process list
(Win 2k,
XP etc.)?
Or if this is 'impossible', how can I let my application automatically
restart when it gets killed?



Nov 15 '05 #4
how about a service that enumerates running processes and if your's isn't
running anymore restarts it?

--
Tom Vergote / Developer
ORBID / IT Services
Tramstraat 61 / B-9052 GENT
Tel +32 (0)9 244 99 45 / +32 (0)9 244 99 96
http://www.orbid.be
"G. van den Broek" <gi********@hot mail.com> wrote in message
news:c1******** **@news2.tilbu1 .nb.home.nl...
Does anyone know how to hide a c# application from the process list (Win 2k, XP etc.)?
Or if this is 'impossible', how can I let my application automatically
restart when it gets killed?

Nov 15 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
7737
by: A. Tillman | last post by:
We are having a really big problem with a zombie process/transaction that is blocking other processes. When looking at Lock/ProcessID under Current Activity I see a bunch of processes that are blocked by process 94 and process 94 is blocked by process -2. I assume -2 is a zombie that has an open transaction. I cannot find this process to kill and it seems that this transaction is surviving database restarts. I know which table is...
4
2387
by: Mrinal Kamboj | last post by:
Hi , Doubt may be bit trivial , but i wanted to know , what are the exact benefits derived while we run a background process as an NT service in windows , we can as well achieve the functionality using standalone exe , which will keep on running in a loop and do the job till been messaged to stop . Essentially , i want the key advantages of implementing process daemons as an NT Service in windows .
5
1809
by: Daniel | last post by:
Hi, is the a way to prevent aspnet process to restart after web.config is modified? like, waiting for all sessions to close, or not restart at all ? Thank you, Daniel
7
2581
by: MgGuigg | last post by:
Hello all, This is my first time posting a question to this forum, so here is hoping I am following protocol. I am scraping the rust off my old Basic programming skills, and have just recently upgraded to VB.NET, and I have a lot of catching up to do. That being said, I have come a long way in a short while, however, I am stumped at the moment. I have read through days of posts, but have not been able to address my specific question, so...
0
1037
by: Srinivas | last post by:
I have a Process which lauches Internet Explorer.Using this process I keep changing the URL of the Browser based on certain user event. I intend to kill this Process and restart it when the Process WorkingSet is above 100 MB. The Problem that I am facing is that this Process sometimes is getting killed automatically by itself after the event handler. Please let me know what must have killed this process and why ? Is there any Process...
2
1403
by: Jay | last post by:
Hey There, Can anyone point in me in the direction of what the procedure is for a code that will launch a process and have it be protected by Windows in the sense that if it is killed, it is automatically re-launched? I have seen viruses do this, and am trying to reproduce that methodology. Just to assure anyone out there, this is NOT for creating a virus. This is for legitimate code that will be used. -Jay (patelj27b at gmail dot com)
13
4529
by: Matt | last post by:
Does anyone know how to hide the ASPX extension of web pages in ASP.Net 2.0? Thanks, Matt
1
6760
by: Adam Atlas | last post by:
What is the best way for a Python process (presumed to be a script run by the interpreter binary, not embedded in some other program) to restart itself? This is what I've been trying: import __main__ for path in sys.path: path += '/' + __main__.__file__ if os.access(path, os.F_OK): break else:
4
7183
by: yxq | last post by:
Hello, I want to kill the Explorer process, after Explorer process has been killed, it will restart automatically immediately. How to disable it restart automatically? for example, in Windows Task Manager, you can kill explorer process, but it will not restart automatically. My code: ///////////////////////////////////////////// For Each ObjPro As Process In Process.GetProcessesByName("EXPLORER")
0
10620
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10369
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9187
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5546
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5682
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4329
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3851
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.