Well I'm pretty sure that you should be able to find this key in your registry at least.
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices
In my registry that's where my ZoneAlarm TrueVector entry sits. and unless I'm totally off on this, the RunServices key has loading priority over the Run key which will make other software load at startup. Understandably this would be crucial requirement to any firewall or Anti Virus software.
The firewall has to be able to stop any Trojans or virus from attempting to establish a connection on execution. Obviously it ain't loaded when that happens it wouldn’t help you much![]()
Any way you probably know all this but If you are just wanting to add your app to this list, just find any code on this forum that will let you create a key in the registry and modify it to point to this key instead.
Here's what the registry entry for TrueVector looks like on my Win98 system BTW:
"C:\WINDOWS\SYSTEM\ZONELABS\VSMON.EXE -service"
If you were reffering to a way to hide your app from task manager's list by running it as a service, this might be what you need then..
hope this helps!VB Code:
Public Declare Function GetCurrentProcessId Lib "kernel32" () As Long Public Declare Function RegisterServiceProcess Lib "kernel32" (ByVal dwProcessId As Long, ByVal dwType As Long) As Long Public Const RSP_SIMPLE_SERVICE = 1 Public Const RSP_UNREGISTER_SERVICE = 0 Public Sub MakeMeService() 'To hide your application from the Task Manager Dim pid As Long Dim regserv As Long pid = GetCurrentProcessId() regserv = RegisterServiceProcess(pid, RSP_SIMPLE_SERVICE) End Sub Public Sub UnMakeMeService() 'To restore your application to the Task Manager Dim pid As Long Dim regserv As Long pid = GetCurrentProcessId() regserv = RegisterServiceProcess(pid, RSP_UNREGISTER_SERVICE) End Sub




Reply With Quote