Simple module used to generate QR Codes within PowerShell using QRCoder Assembly. All credits to original author(s).
Power-QrCodeGenerator supports all paylods supported by original assembly which are described here.
QrCoder aims to be as simple as possible while maintaining flexibility. Generating a QR code for a WiFi network is as simple as using the following:
New-QrWifiAccess -SSID 'MyNetwork' -NetworkPassword 'MyPassword' -Width 100
The above example will create a QR containing access information for a network with SSID MyNetwork requiring a password to access, file will be created under $env:temp\qrcode.png path which can be modified with the -OutputPath parameter followed by a valid path and filename.
Module relies on QrCoder dll which is embedded in module's manifest as string.
Note: Instructions on how to embed assemblies via string can be found here.
Module is still under development all available functions are to be considered production ready as they've been tested before commit.