mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-17 08:00:39 +00:00
Update cheatsheets
This commit is contained in:
41
tldr/windows/netsh-wlan
Normal file
41
tldr/windows/netsh-wlan
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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 oolder}} 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`
|
||||
Reference in New Issue
Block a user