aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md12
-rw-r--r--utils/libnt_path_converter/README.md2
-rw-r--r--utils/libservice/README.md4
3 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index f17b493..f57590c 100644
--- a/README.md
+++ b/README.md
@@ -56,18 +56,18 @@ For example, to install a driver "C:\test.sys" as a "test" service, run
sc create test type= kernel binPath= C:\test.sys
-You can then load/unload the driver using the `sc` to start/stop the
-corresponding service.
+You can then load/unload the driver by using the `net` utility to start/stop
+the corresponding service.
- sc start test
- sc stop test
+ net start test
+ net stop test
To uninstall a driver, delete the corresponding service using `sc`.
sc delete test
-Please note, that on the 64-bit version of Windows 7 loading 32-bit drivers is
-not allowed.
+Please note, that **64-bit versions of Windows 7 disallow loading 32-bit
+drivers**!
You may also need to explicitly enable loading self-signed drivers on 64-bit
versions of Windows.
diff --git a/utils/libnt_path_converter/README.md b/utils/libnt_path_converter/README.md
index b281d10..185ea02 100644
--- a/utils/libnt_path_converter/README.md
+++ b/utils/libnt_path_converter/README.md
@@ -20,7 +20,7 @@ The NT namespace can be explored using the
[WinObj](https://technet.microsoft.com/en-us/library/bb896657.aspx) utility.
Usage example (assuming nt_path_converter is already loaded):
- >convert_nt_path.exe \Device\HarddiskVolume2\Windows
+ > convert_nt_path.exe \Device\HarddiskVolume2\Windows
C:\Windows
## Building
diff --git a/utils/libservice/README.md b/utils/libservice/README.md
index c8dd180..dfc9754 100644
--- a/utils/libservice/README.md
+++ b/utils/libservice/README.md
@@ -31,7 +31,7 @@ The same as
Starts a service (loading the corresponding driver).
The same as
- sc start NAME
+ net start NAME
except that `start_service.exe` waits until the service is actually loaded.
@@ -42,7 +42,7 @@ except that `start_service.exe` waits until the service is actually loaded.
Stops the service `NAME` (unloading the corresponding driver).
The same as
- sc stop NAME
+ net stop NAME
except that `stop_service.exe` waits until the service is actually stopped.