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
This commit is contained in:
Kishore B
2025-10-07 18:06:23 +05:30
committed by GitHub
parent f1190ea8d3
commit 9983c2a775
+36
View File
@@ -0,0 +1,36 @@
# netsh wlan
> Manage wireless networks.
> More information: <https://www.serverwatch.com/guides/netsh-commands/>.
- Show all available wireless networks:
`netsh wlan show networks`
- Connect to a wireless network with a specific SSID:
`netsh wlan connect name={{SSID}}`
- Disconnect from the current wireless network:
`netsh wlan disconnect`
- Show current wireless network interfaces and status:
`netsh wlan show interfaces`
- Export a wireless network profile to an XML file:
`netsh wlan export profile name={{SSID}} folder={{C:\path\to\folder}} key=clear`
- Delete 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 hostednetwork`