A Windows Wi-Fi manager for Raycast. Scan, join, share, and inspect Wi-Fi networks from the Raycast search window without opening the Windows quick settings flyout or the Settings app.
Quick Radios is scoped to Raycast for Windows and does not run on macOS. It is built entirely on Windows-native APIs:
netsh wlan for interfaces, profiles, connection, and saved-password lookupWlanScan) for active hardware scans, so newly broadcasting hotspots appear without waiting on the OS cacheWindows.Devices.Radios API for turning the Wi-Fi radio on or off without administrator rightswifi)toggle-wifi)| Action | Shortcut |
|---|---|
| Connect / Disconnect | Enter |
| Toggle Wi-Fi Radio | Ctrl + T |
| Copy Wi-Fi Password | Ctrl + Shift + P |
| Copy IP Address | Ctrl + C |
| Test Internet Speed | Ctrl + Shift + S |
| Open Wi-Fi Settings | Ctrl + O |
| Refresh List | Ctrl + R |
Windows treats nearby Wi-Fi networks and the connected network name as location data. With Location access off, netsh wlan refuses to list networks or report the current connection, so Manage Wi-Fi shows a Location Access Required screen instead of the network list. To enable it:
The list reloads on its own within a few seconds. Toggle Wi-Fi does not need Location access.
The bundled assets/quick-radios-helper.exe is compiled from assets/quick-radios-helper.cs. It only triggers WLAN scans and reads or sets the Wi-Fi radio state. If the helper is unavailable, the extension falls back to equivalent PowerShell WinRT calls.
# Install dependencies
npm install
# Start extension in development mode
npm run dev
# Run type check and lint
npm run lint
# Run unit tests
npm test
# Run live checks against the local Wi-Fi adapter
npm run test:integration:windows
# Build extension
npm run build
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /nologo /optimize+ /target:exe `
/out:assets\quick-radios-helper.exe `
/r:C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Runtime.dll `
/r:C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.Runtime.WindowsRuntime.dll `
"/r:C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0\Windows.winmd" `
assets\quick-radios-helper.cs