snippetbashTip
netsh wlan — Manage wireless networks. More information: <https://www.serverwatch.com/guides/netsh-commands/>.
Viewed 0 times
commandnetsh wlanclimanagemoreinformationwirelessnetworks
windows
Problem
How to use the
netsh wlan command: Manage wireless networks. More information: <https://www.serverwatch.com/guides/netsh-commands/>.Solution
netsh wlan — Manage wireless networks. More information: <https://www.serverwatch.com/guides/netsh-commands/>.Show all available wireless networks:
netsh wlan show networksConnect to a wireless network with a specific SSID:
netsh wlan connect name={{SSID}}Disconnect from the current wireless network:
netsh wlan disconnectShow current wireless network interfaces and status:
netsh wlan show interfacesExport a wireless network profile to an XML file:
netsh wlan export profile name={{SSID}} folder={{C:\path\to\folder}} key=clearDelete a saved wireless network profile:
netsh wlan delete profile name={{SSID}}Enable hosted network (turn PC into Wi-Fi hotspot):
netsh wlan set hostednetwork mode=allow ssid={{SSID}} key={{password}}Start the hosted network:
netsh wlan start hostednetworkCode Snippets
Show all available wireless networks
netsh wlan show networksConnect to a wireless network with a specific SSID
netsh wlan connect name={{SSID}}Disconnect from the current wireless network
netsh wlan disconnectShow current wireless network interfaces and status
netsh wlan show interfacesExport a wireless network profile to an XML file
netsh wlan export profile name={{SSID}} folder={{C:\path\to\folder}} key=clearContext
tldr-pages: windows/netsh wlan
Revisions (0)
No revisions yet.