1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Datos de la conexión wifi $wifi = "RedWifi" $pwd = "Secreto01passA" # Fichero con el código QR $path = "wifiaccess.png" # Instalar el módulo QRCodeGenerator # Automatically creates QR codes as PNG images for persons (vCard), WiFi access, and geo location. Works on all PowerShell versions and editions Install-Module QRCodeGenerator -Scope CurrentUser -Force # Crear el código QR New-QRCodeWifiAccess -SSID $wifi -Password $pwd -OutPath $path |