aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-10-05 23:56:27 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2021-10-05 23:56:27 -0600
commitb9e3a703e8ab176dac0e22a74354e9627277c302 (patch)
treeb03cc7a3ac2c11b0ff7f9b4f960a843ceea9594c /docs
parentdocs: add example for task scheduler (diff)
downloadwireguard-windows-b9e3a703e8ab176dac0e22a74354e9627277c302.tar.xz
wireguard-windows-b9e3a703e8ab176dac0e22a74354e9627277c302.zip
driver: use new API
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/enterprise.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/enterprise.md b/docs/enterprise.md
index fbbbc13a..ce35d7d4 100644
--- a/docs/enterprise.md
+++ b/docs/enterprise.md
@@ -89,16 +89,16 @@ One could have Task Scheduler run it daily at 3am:
> schtasks /create /f /ru SYSTEM /sc daily /tn "WireGuard Update" /tr "%PROGRAMFILES%\WireGuard\wireguard.exe /update" /st 03:00
```
-### Network Adapters
+### Driver Removal
-The tunnel service creates a network adapter at startup and destroys it at shutdown. It may be desirable, however, to remove all network adapters created in WireGuard's pool and uninstall the driver if no other applications are using our network adapters. This can be accomplished using the command:
+The tunnel service creates a network adapter at startup and destroys it at shutdown. If there are no more network adapters, the driver may be removed with:
```text
-> wireguard /removealladapters
+> wireguard /removedriver
```
Or, to log the status of that command:
```text
-> wireguard /removealladapters 2> C:\path\to\removal\log.txt
+> wireguard /removedriver 2> C:\path\to\removal\log.txt
```