Skip to content

Commit 9983c2a

Browse files
authored
netsh-wlan: add page (#18357)
* Add tldr page for scrun command * windows: add netsh-wlan command * windows: add netsh-wlan command * windows: add netsh-wlan command * windows: add netsh-wlan command * windows: add netsh-wlan command * windows: add netsh-wlan command * cleared bot errors * removed portproxy * Restored accidentally deleted file, please check for it * attached the official link that covers the wlan in sub categories * legit link attached * attached the official link that covers the wlan in sub categories * removed the extra words
1 parent f1190ea commit 9983c2a

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

pages/windows/netsh-wlan.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# netsh wlan
2+
3+
> Manage wireless networks.
4+
> More information: <https://www.serverwatch.com/guides/netsh-commands/>.
5+
6+
- Show all available wireless networks:
7+
8+
`netsh wlan show networks`
9+
10+
- Connect to a wireless network with a specific SSID:
11+
12+
`netsh wlan connect name={{SSID}}`
13+
14+
- Disconnect from the current wireless network:
15+
16+
`netsh wlan disconnect`
17+
18+
- Show current wireless network interfaces and status:
19+
20+
`netsh wlan show interfaces`
21+
22+
- Export a wireless network profile to an XML file:
23+
24+
`netsh wlan export profile name={{SSID}} folder={{C:\path\to\folder}} key=clear`
25+
26+
- Delete a saved wireless network profile:
27+
28+
`netsh wlan delete profile name={{SSID}}`
29+
30+
- Enable hosted network (turn PC into Wi-Fi hotspot):
31+
32+
`netsh wlan set hostednetwork mode=allow ssid={{SSID}} key={{password}}`
33+
34+
- Start the hosted network:
35+
36+
`netsh wlan start hostednetwork`

0 commit comments

Comments
 (0)