|
okay i don't really want you to pay anything when we can do it for free..
i'm not sure that will be any other ways easier..
But this should set any apps to run as a services in windows XP!
after you have the 2 files ..."srvany.exe" and "instsrv.exe" ...there should be avail to D/L from internet if you don't have the 2K CD.
copy or move both files to "system32" folder.
open CMD and enter following command.. press enter after that.
(ABC is for an example, you'll need to modify it)
instsrv.exe ABC c:\windows\system32\srvany.exe
you should see the below..
----------------------------------
CreateService SUCCESS at creating:
ABC
You must now go to the Registry and the Services applet in the
Control Panel and edit them as per the instructions.
-------------------------------------
close CMD windows.
next step..
at Run dialog box, type regedit and enter.
navigate to HKLM\SYSTEM\CurrentControlSet\Services
at under "Services" there should be a new key named...."ABC"
(you should also see a key named "Security"
that kay was auto created by windows)
at "ABC" ,add key named "Parameters"
also add following value to "Parameters"..
..."Application", data type REG_SZ, with value set to full path to "ABC.exe".
at this point, if you are not sure what todo with registry .. i've made a reg key below so it'll be easy for you to add all values.
modify it and make a .reg file, import it into registry..
-----------------------------
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\ABC\Parameters]
"Application"="C:\\Program Files\\ABC\\ABC.exe"
----------------------------
next go to MMC "Services", set the services to start as "Manual"
reboot your computer.
now, to start ABC services, type following command in Run box and enter..
Sc.exe start ABC
(Sc.exe is already included in XP)
to see if it works or not..
hit ctrl+shift+esc, in "Windows Task Manager" you will see the ABC rus as a service... also in MMC "Services" you should see the services status listing as "Started"
i hope its what you need. good luck!
|