Files
aza/AzA march 2026 - Kopie (6)/deploy/aza-deploy/test-telemetry-update-check.ps1

13 lines
287 B
PowerShell
Raw Normal View History

2026-04-16 13:32:32 +02:00
$body = @{
event = "update_check"
version = "0.1.0"
platform = "windows"
target_version = "0.2.0"
} | ConvertTo-Json -Compress
Invoke-RestMethod `
-Method Post `
-Uri "http://localhost:8080/telemetry/ping" `
-ContentType "application/json" `
-Body $body