Files
cheatsheet-tldr/tldr/windows/netsh
2025-12-20 00:20:53 +00:00

39 lines
753 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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/windows-server/administration/windows-commands/netsh>.
- Add a helper Dynamic Link Library (DLL):
`netsh add helper {{path o ile.dll}}`
- Show all loaded helper DLLs:
`netsh show helper`
- Delete a helper DLL:
`netsh delete helper {{path o ile.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`