I will be explaining how to use cmd to talk, prank, scare, or even infect the computer!!(the basic kind)
There's a file for you to download(below), I made it of course for you to comment on!!(don't be hard on me, I'm not a pro...)
fake.zip978 bytes
Remove these ads by
Signing UpStep 1: Very Basic!!
on the first line, we start off with:
@echo off
or maybe:
@echo on
or maybe you don't want to put anything on the first line.(not recommended)
but the main point to this is if you want to show or hide the commands, but normally you don't want to, or else it will ruin the beauty of your work.


































Visit Our Store »
Go Pro Today »




@echo off
color 3
echo what is your name?
set /p input=
echo hello %input%
pause
cls
echo how are you today (good/bad)
set /p input=
if %input%==good goto good
if %input%==bad goto bad
:good
echo that is good
goto bye
:bad
echo that is bad
goto bye
:bye
echo good bye for now
pause
goto end
:end
try this in command prompt:
echo %username%
WOW i have your username :|
@echo off = turns command off (Type this at the top of your program)
@echo on = turns command on
dir = scans all folders and files in the curront folder (no harm)
dir/s = scans all folders and files in the computer (no harm but looks like a virus is installing)
set value=magic = when i type %value% the computer will think i just typed magic (does not have to be value and magic)
set /p value= = the user types something and the computer will make %value% to become what the user typed
set /a value=%value%-1 = say value was 10. i am typing 10-1 but thats going to be the value so with the /a it makes it think its 9
if %value%==55 goto :55 = this will see if %value% is equal to 55 if it is it goes to :55 if not it carrys on from where it was
if not %value%==55 goto :55 = This will see if %value% is not equal to 55 and if it is equal then it carrys on if its not equal then it gots to :55
echo (texthere) = says (texthere)
echo (texthere)>>(filehere).txt = will put (texthere) in to a file called (filehere) and it will be a text documant
cls = clear screen
cd (folder) = goes to the folder
md (folder) = makes a folder called (folder)
start (program here) = start a program
for /l %%n In (1,1,(timeshere)) DO (command here)
%0 = itsself
pause = pause saying "press any key to continue"
pause >nul = pause and say nothing
(command) >nul = does not show that command to the user
:(name) = makes a lable called (name)
goto :(name) = goes to the label called (name)