aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/README.md
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-07-15 22:37:21 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-07-15 22:37:21 +0300
commitdc4efa9afef076e7530d8bbae5ca4803c958e8ca (patch)
treeb2c4d37db697ff2a031e8a8f46e93834ed37beba /README.md
parentcode style (diff)
downloadwindows7-drivers-dc4efa9afef076e7530d8bbae5ca4803c958e8ca.tar.gz
windows7-drivers-dc4efa9afef076e7530d8bbae5ca4803c958e8ca.zip
README updates
Diffstat (limited to '')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 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.