HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

netsh — Manage Windows network settings. Some subcommands such as `wlan` have their own usage documentation.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
netshcommandwindowsnetworkclimanagesettingssome
windows

Problem

How to use the netsh command: 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>.

Solution

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\to\file.dll}}


Show all loaded helper DLLs:
netsh show helper


Delete a helper DLL:
netsh delete helper {{path\to\file.dll}}


Export your network configuration settings to a file:
netsh dump > {{path\to\output_file.txt}}


Show available network interfaces for tracing:
netsh trace show interfaces


Exit the shell:
exit


Display help:
netsh help

Code Snippets

Add a helper Dynamic Link Library (DLL)

netsh add helper {{path\to\file.dll}}

Show all loaded helper DLLs

netsh show helper

Delete a helper DLL

netsh delete helper {{path\to\file.dll}}

Export your network configuration settings to a file

netsh dump > {{path\to\output_file.txt}}

Show available network interfaces for tracing

netsh trace show interfaces

Context

tldr-pages: windows/netsh

Revisions (0)

No revisions yet.