mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-17 02:00:31 +00:00
Update cheatsheets
This commit is contained in:
38
tldr/windows/netsh
Normal file
38
tldr/windows/netsh
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# netsh
|
||||
|
||||
> Manage Windows network settings.
|
||||
> Some subcommands such as `wlan` have their own usage documentation.
|
||||
> More information: <https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/netsh>.
|
||||
|
||||
- Add a helper Dynamic Link Library (DLL):
|
||||
|
||||
`netsh add helper {{path oile.dll}}`
|
||||
|
||||
- Show all loaded helper DLLs:
|
||||
|
||||
`netsh show helper`
|
||||
|
||||
- Delete a helper DLL:
|
||||
|
||||
`netsh delete helper {{path oile.dll}}`
|
||||
|
||||
- Export your network configuration settings to a file:
|
||||
|
||||
`netsh dump > {{path o\output_file.txt}}`
|
||||
|
||||
- Show available network interfaces for tracing:
|
||||
|
||||
`netsh trace show interfaces`
|
||||
|
||||
- Exit the shell:
|
||||
|
||||
`exit`
|
||||
|
||||
- Display help:
|
||||
|
||||
`netsh help`
|
||||
Reference in New Issue
Block a user