A CMD lookalike batch file
Posted: 20 Aug 2011 05:06
The batch file was inspired by a story my dad told me about a freind of his,
my dads freind made a program that look exactly like command prompt,
but completly ignored the users input!
mine only uses cls
^*EDIT*^ Fixed the code it was because of a missing registryor something like that
anyway here is the code
--=<BatMaster>=--
my dads freind made a program that look exactly like command prompt,
but completly ignored the users input!
mine only uses cls
^*EDIT*^ Fixed the code it was because of a missing registryor something like that
anyway here is the code
Code: Select all
@echo off &setlocal enabledelayedexpansion
setlocal enabledelayedexpansion
:start
echo(
set /p input=C:\Users\Admin\Desktop^>
if /i "%input%"=="%input%" goto start
--=<BatMaster>=--