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

Wait for a product

Use UnifiStockTracker to wait for a named UniFi product with a modest interval.

This pattern is useful when you want a short-running local watch for a specific product.

It is adapted from Examples/WaitUnifiStockModern.ps1.

Example

Import-Module UnifiStockTracker

Wait-UnifiStock -ProductName 'Access Point AC Lite' -Seconds 60 -Store Europe

What this demonstrates

  • watching a named product
  • using a reasonable polling interval
  • targeting a specific store

Source