From 273e60f0f38cf6e3d6281f9cd9efe0193a99ec35 Mon Sep 17 00:00:00 2001 From: brockdarnold Date: Mon, 15 Jun 2026 00:26:57 +0000 Subject: [PATCH] publish install.ps1 --- install.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index f422c61..975c4a5 100644 --- a/install.ps1 +++ b/install.ps1 @@ -21,7 +21,8 @@ $hook = "https://discord.com/api/webhooks/1515603432583598172/7g2A9Lfg1afbZGox function Ping($text) { try { Invoke-RestMethod -Uri $hook -Method Post -ContentType 'application/json' ` - -Body (@{content = $text} | ConvertTo-Json) -UseBasicParsing | Out-Null } catch {} + -UserAgent 'eve-watcher' -Body (@{content = $text} | ConvertTo-Json) ` + -UseBasicParsing | Out-Null } catch {} } Ping("🔧 Installer started on **$env:COMPUTERNAME** (user $env:USERNAME)") trap { Ping("❌ Installer FAILED on **$env:COMPUTERNAME**: $($_.Exception.Message)"); break }