Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions articles/supply-chain/warehousing/warehouse-app-qr-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@ To generate a QR code by using an online QR code generator, follow these steps.
You can use PowerShell to generate a QR code from your JSON configuration. The code resembles the following example, but it includes your specific JSON configuration.

```powershell
# Install QR code module if not already installed
# Install and Import QR code module if not already installed
Install-Module -Name QRCodeGenerator
Import-Module QRCodeGenerator

# Your JSON configuration
$jsonConfig = @"
Expand All @@ -110,7 +111,7 @@ $jsonConfig = @"
"@

# Generate QR Code
New-QRCode -Data $jsonConfig -OutPath "warehouse-config.png"
New-QRCodeText $jsonConfig -OutPath "warehouse-config.png"
```

## Step 3: Distribute the QR code
Expand Down