Processes in Windows XP
-
Hello, Is it possible that I can have a process running on Windows XP Home that does not appear in the Windows Task Manager? If so, how can I detect such processes? Thanks, -Me!
Anonymous wrote: Is it possible that I can have a process running on Windows XP Home that does not appear in the Windows Task Manager? Not AFAIK. That used to be a feature of pre-stone age Win9x OS :) Regards, Venet. Donec eris felix, multos numerabis amicos.
-
Hello, Is it possible that I can have a process running on Windows XP Home that does not appear in the Windows Task Manager? If so, how can I detect such processes? Thanks, -Me!
Yes, it is possible but I hope Mircrosoft will fix it soon! I know of no way of detecting it but if it is a problem to you then contact me and we will find some solution. jhaga CodeProject House, Paul Watson wrote: ...and the roar of John Simmons own personal Nascar in the garage. Meg flitting about taking photos.Chris having an heated arguement with Colin Davies and .S.Rod. over egian values. Nish manically typing *censur*. Duncan racing around after his pet *c.* Michael Martin and Bryce loudly yelling *c.* C.G. having a fit as Roger Wright loads up *c.* . Anna waving her *c.* and Deb scoffing chocolates in the corner. ...Good heavens!
-
Yes, it is possible but I hope Mircrosoft will fix it soon! I know of no way of detecting it but if it is a problem to you then contact me and we will find some solution. jhaga CodeProject House, Paul Watson wrote: ...and the roar of John Simmons own personal Nascar in the garage. Meg flitting about taking photos.Chris having an heated arguement with Colin Davies and .S.Rod. over egian values. Nish manically typing *censur*. Duncan racing around after his pet *c.* Michael Martin and Bryce loudly yelling *c.* C.G. having a fit as Roger Wright loads up *c.* . Anna waving her *c.* and Deb scoffing chocolates in the corner. ...Good heavens!
jhaga wrote: Yes, it is possible but I hope Mircrosoft will fix it soon! I know of no way of detecting it but if it is a problem to you then contact me and we will find some solution. Mind sharing it please? Regards, Venet. Donec eris felix, multos numerabis amicos.
-
jhaga wrote: Yes, it is possible but I hope Mircrosoft will fix it soon! I know of no way of detecting it but if it is a problem to you then contact me and we will find some solution. Mind sharing it please? Regards, Venet. Donec eris felix, multos numerabis amicos.
If you use VB: To hide the program from the Taskmanager write the below code in the form load. App.Taskvisible = False [Edit: ok, you will see it in Processes but by selecting a strange name for it, it will be difficult to find] http://www.codeproject.com/useritems/PreventClose.asp[^] jhaga CodeProject House, Paul Watson wrote: ...and the roar of John Simmons own personal Nascar in the garage. Meg flitting about taking photos.Chris having an heated arguement with Colin Davies and .S.Rod. over egian values. Nish manically typing *censur*. Duncan racing around after his pet *c.* Michael Martin and Bryce loudly yelling *c.* C.G. having a fit as Roger Wright loads up *c.* . Anna waving her *c.* and Deb scoffing chocolates in the corner. ...Good heavens!
-
Hello, Is it possible that I can have a process running on Windows XP Home that does not appear in the Windows Task Manager? If so, how can I detect such processes? Thanks, -Me!
Anonymous wrote: how can I detect such processes Use Process Viewer in Visual Studio.:)
"The Lion shall lie down with the Lamb;
but the Lamb will not get much sleep..."
Lazarus Long -
If you use VB: To hide the program from the Taskmanager write the below code in the form load. App.Taskvisible = False [Edit: ok, you will see it in Processes but by selecting a strange name for it, it will be difficult to find] http://www.codeproject.com/useritems/PreventClose.asp[^] jhaga CodeProject House, Paul Watson wrote: ...and the roar of John Simmons own personal Nascar in the garage. Meg flitting about taking photos.Chris having an heated arguement with Colin Davies and .S.Rod. over egian values. Nish manically typing *censur*. Duncan racing around after his pet *c.* Michael Martin and Bryce loudly yelling *c.* C.G. having a fit as Roger Wright loads up *c.* . Anna waving her *c.* and Deb scoffing chocolates in the corner. ...Good heavens!
jhaga wrote: _[Edit: ok, you will see it in Processes but by selecting a strange name for it, it will be difficult to find] http://www.codeproject.com/useritems/PreventClose.asp\[^\]_ I'm gonna check this article tomorrow, but if it works it changes many things. Thanks :) <edit> It does work, no trace of the process in Task Manager, however it is still shown in the Process Explorer (sysinternals) Thanks for the link. </edit> Regards, Venet. Donec eris felix, multos numerabis amicos.