Project

UnifiStockTracker

UnifiStockTracker is a PowerShell module to get current stock on Europe, Brazil or USA Ubiquiti stores. Since I was constantly checking stock on Ubiquiti store waiting for specific products I decided to automate it.

Stars23
Forks3
Open issues0
PowerShell Gallery downloads12219
Releasev2.2.0
Language: PowerShell Updated: 2026-02-14T21:45:41.0000000+00:00

Curated Examples

List store products

Use UnifiStockTracker to list products from a UniFi store collection.

This pattern is useful when you want to inspect current product data before watching for one item.

It is adapted from Examples/GetUnifiStockModern.ps1.

Example

Import-Module UnifiStockTracker

Get-UnifiStock -Store Europe -Collection SwitchingProEthernet |
    Sort-Object -Property Name |
    Format-Table Name, SKU, Available -AutoSize

What this demonstrates

  • querying the modern store endpoint
  • limiting output to a collection
  • sorting product data before display

Source