/Power-QrCodeGenerator

QRCode generator written in PowerShell

Primary LanguagePowerShellMIT LicenseMIT

Power-QrCodeGenerator

Simple module used to generate QR Codes within PowerShell using QRCoder Assembly. All credits to original author(s).

Supported payloads

Power-QrCodeGenerator supports all paylods supported by original assembly which are described here.

How to use

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.

External requirements

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 Status

Module is still under development all available functions are to be considered production ready as they've been tested before commit.