Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-31 00:20:00 +00:00
parent a2961fe873
commit a94cb9991c
15 changed files with 362 additions and 8 deletions

38
tldr/windows/netsh Normal file
View 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 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`