From 4997b42874e6e47c323247dc3493bf71ccd076ca Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Mon, 12 Jan 2026 11:56:55 -0500 Subject: [PATCH] Update samy.ps1 --- samy.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/samy.ps1 b/samy.ps1 index cabce80..83fcb15 100644 --- a/samy.ps1 +++ b/samy.ps1 @@ -23,6 +23,10 @@ if ($ExecutionContext.SessionState.LanguageMode -ne 'FullLanguage' -or # Download -> create ScriptBlock -> INVOKE it with @args so $args survives the relaunch $bootstrap = "& { `$sb = [ScriptBlock]::Create((Invoke-WebRequest 'https://samybeta.svstools.ca' -UseBasicParsing).Content); & `$sb @args }" powershell.exe -NoProfile -ExecutionPolicy Bypass -Command $bootstrap @argList + + # temp + Write-Host "[Debug] Script saw args: $($args -join ' | ')" -ForegroundColor Magenta + }