diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-07-15 22:37:21 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-07-15 22:37:21 +0300 |
commit | dc4efa9afef076e7530d8bbae5ca4803c958e8ca (patch) | |
tree | b2c4d37db697ff2a031e8a8f46e93834ed37beba /README.md | |
parent | code style (diff) | |
download | windows7-drivers-dc4efa9afef076e7530d8bbae5ca4803c958e8ca.tar.gz windows7-drivers-dc4efa9afef076e7530d8bbae5ca4803c958e8ca.zip |
README updates
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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. |