blob: 7848a31a1d7b235372ec5d5a587932652cd826f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
Driver management
=================
Utilities to load/unload the drivers.
Usage
-----
### install_service.exe
Usage: install_service.exe NAME SYS_PATH
Installs a driver as a service.
The same as
> sc create NAME type= kernel binPath= SYS_PATH
### start_service.exe
Usage: start_service.exe NAME
Starts the service `NAME` (loading the corresponding driver).
The same as
> net start NAME
### stop_service.exe
Usage: stop_service.exe NAME
Stops the service `NAME` (unloading the corresponding driver).
The same as
> net stop NAME
### uninstall_service.exe
Usage: uninstall_service.exe NAME
Uninstalls the service `NAME`, wiping the corresponding record from the
registry.
The same as
> sc delete NAME
See also
--------
* [Building](../README.md#building)
|