-
-
Notifications
You must be signed in to change notification settings - Fork 350
Description
Is your feature request related to a problem? Please describe.
I often find it tedious to share Wi-Fi passwords with friends or family, especially when typing complex passwords manually. There is no easy way to generate a QR code from saved Wi-Fi profiles on Windows so that others can quickly connect without typing passwords.
Describe the solution you'd like
I would like to add a Python script that automatically extracts saved Wi-Fi profiles and passwords on Windows and generates QR codes for each network. Scanning the QR code with a phone will allow automatic connection to that Wi-Fi. This makes sharing credentials fast and convenient.
Describe alternatives you've considered
Currently, users manually create QR codes using third-party websites or apps, which requires typing the SSID and password manually. Some scripts exist but are not integrated into this repository. Adding this script to the repo will centralize such useful automation tools.
Additional context
The script uses Windows netsh
commands to get profiles and passwords and the qrcode
Python package to generate QR codes saved as PNG files. It will also include a README explaining installation and usage steps.