Saturday, October 20, 2007

What is DOS ? Learn more about !

Microsoft DOS is a command line user interface first introduced in 1981 for IBM computers and was last updated in 1994 when MS-DOS was released.
Although MS-DOS is not commonly used today, the command shell used through Microsoft Windows is.

now a day we mainly remplaced the batch script with .net script or similaire.
At the begening hacker was using a lot MS-DOS to do some exploie.

You can make you own Batch file.
creat a file named toto.bat edit it with notepad
in it write

@echo off
echo Hello World !
echo.
echo Push a key to exit
pause > nul

What this script will do ?

Well we ask the programme to not show command with @echo off
Then we write in the console "Hello World !"
then echo. mean we skip a line
then it will write "Push a key to exit"
and finaly pause > nul mean once you push any key it's gona close the console.

Here you make your very first batch script !

No comments: