mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jul 2009
Posts: 1
S
Susanoo Offline OP
Mostly harmless
OP Offline
Mostly harmless
S
Joined: Jul 2009
Posts: 1
If your like me and run an mirc bot, but dont like having to login for it to do its job. This is the best option for you. A windows service will run before you ever login to the system. So basicly it starts with windows like for instance the Remote Desktop service.


To create a Windows NT user-defined service, perform the following steps:

1. At a MS-DOS command prompt(running CMD.EXE), type the following command:

path\INSTSRV.EXE My Service path\SRVANY.EXE

where path is the drive and directory of the Windows NT Resource Kit (i.e., C:\RESKIT) and My Service is the name of the service you are creating.

Example:
C:\Program Files\Resource Kit\Instsrv.exe Notepad C:\Program Files\Resource Kit\Srvany.exe
NOTE: To verify that the service was created correctly, check the registry to verify that the ImagePath value under
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\service name
is set to point to SRVANY.EXE. If this is not set correctly, the service will stop shortly after it starts and return an Event ID 7000 "The service name failed to start."

WARNING: Using Registry Editor incorrectly can cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that problems resulting from the incorrect use of Registry Editor can be solved. Use Registry Editor at your own risk.

For information about how to edit the registry, view the "Changing Keys And Values" online Help topic or the "Add and Delete Information in the Registry" and "Edit Registry Data" online Help topics in Registry Editor.

NOTE: You should back up the registry before you edit it.
2. Run Registry Editor (Regedt32.exe)and locate the following subkey:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<My>
3. From the Edit menu, click Add Key. Type the following and click OK:

Key Name: Parameters
Class : <leave>
4. Select the Parameters key.
5. From the Edit menu, click Add Value. Type the following and click OK:

Value Name: Application
Data Type : REG_SZ
String : <path>\<application>

where <path>\<application> is the drive and full path to the application executable including the extension (i.e., C:\WinNT\Notepad.exe)
6. Close Registry Editor.

By default, a newly created service it configured to run Automatically when the system is restarted. To change this setting to Manual, run the Services applet from Control Panel and change the Startup value to Manual. A service set to Manual can be started in one of several ways:
- From the Services applet in Control Panel

- From a MS-DOS command prompt, type the following:

NET START <My>

- Use the Sc.exe utility from the Resource Kit. Type the following from a MS-DOS command prompt:

<path>\Sc.exe start <My>

where <path> is the drive and directory of the Windows NT Resource Kit (i.e., C:\Reskit).

The above text and all information above is the copywritten property of Microsoft and all related divisions. Windows and the Windows logo are all copywritten property of the same. Original post can be found at http://support.microsoft.com/kb/137890

After you create the service you need to go into Control Panel> Administrative Tools> Services

Then go to the service name and open properties

Next you want to select the "Log On" tab and enter a current user with password

Then click Apply, click Ok, then simply start the service.

(pictures to come)

admins please sticky and move as you wish

Joined: Mar 2004
Posts: 526
Fjord artisan
Offline
Fjord artisan
Joined: Mar 2004
Posts: 526
Thank you so much for this very informatiive post! This can be a real help if your running a bot using mIRC smile



Help others! It makes the world a better place, Makes you feel good, and makes you Healthy!

Link Copied to Clipboard