Introduction: MS-DOS Batch Fun

About: Yes, what about you? Huh? This is about ME? Haha, you had me going there.
Hello everyone! We are going to see the secrets and workings of MS-DOS!

Step 1: Commands, Commands, Commands.

Here is a GREAT link for commands

Step 2: BATCH FILES! Yay!

"But... what if I want to run a LOT of commands repeatly without getting tired?" You say. Well... that`s were BATCH files come in. Let`s do a run-down of batch files, I don`t mind if you build off them, if, IF you give me credit for the original batch.

Step 3: Crazy Cmd

Number #1: CrAzY cmd

@echo off
title Cmd.exe
color 0F
:top
set /p UI=c:/.
echo %RANDOM%%UI%%RANDOM%
%RANDOM%
GOTO top

save as Cmd.bat
if you`re not using Wine replace c:/. with c:/>
For some thing crazy to happen type >>CMD.BAT || or >CMD.BAT ||

Step 4: MyCMD

number #2 : MyCMD

:start ::this is optional onless you know you will want to reset with goto start.
@echo off
color 0a
title MyCMD
echo Welcome.
:Top
echo.
set /p command= ::Your prompt here.
%command%
goto Top

Step 5: Crazy Nethack

#3: Annoying NetHack
You ever heard of the console(CMD, BASH, SH, etc.) game NetHack?
This batch can(And will.) annoy any Windows newbie swapping from Linux.
Note:Place in System32 or it won`t work.

@echo off
cls
title Error
:top
echo FATAL ERROR:
echo Your operating system is not supported
echo Version:
ver
GOTO top

Save as nethack.bat

Step 6: Some Hacks I Found Out.


How to get back to the directory that the batch file is in no matter where it is!:

CD %~dp0

How to loop for a preset amount of times:

set /a loopvar=10
:: ^How many times to loop.
:loop
::Replace ECHO %loopvar% with your commands
echo %loopvar%
if %loopvar% EQU 1 (
goto endloop
) ELSE (
goto loop)


Step 7: Done, Already??

Yep, we are done.