Windows Commands: Displays messages, or turns command echoing on or off.


echo-Windows Command

echo command - Displays messages,or turns command echoing on or off.

Description:
Prints its own arguments back out to the DOS equivalent of the standard output stream. Usually, this means directly to the screen, but the output of echo can be redirected like any other command. Often used in batch files to print text out to the user.
Examples:

echo this is text              Outputs 'this is text'
echo.                          Outputs a blank line

    Another important use of the echo command is to toggle echoing of commands on and off in batch files.

echo on               turns on echoing of commands
echo off              turns off echoing of commands

    Traditionally batch files begin with the @echo off statement. This says to the interpreter that echoing of commands should be off during the whole execution of the batch file thus resulting in a "tidier" output. The @ symbol declares that this particular command (echo off) should also be executed without echo. For example the following 2 batch files are equivalent:

    Batch1.bat:

@echo off
echo The files in your root directory:
dir /b /a-d c:\

    Batch2.bat:

@echo The files in your root directory:
@dir /b /a-d c:\

    Echo can be used to write to files directly from the console, by redirecting the output stream:

echo text > filename

    Echo can also be used to append to files directly from the console, again by redirecting the output stream:

echo text >> filename

    To type more than one line from the console into a file, use copy con (above).
    Equivalent to the Unix command echo.

echo can also be used to make a command prompt and this works in both school and home. At home you just goto

run - type:

cmd

and that’s you got a command prompt

in school/work goto:

notepad - type:

@echo off

command

@echo on

and save it as command.bat

Other Windows 98, Windows XP Commands:
addusers , arp , assoc , associate , at , attrib , browstat , cacls , call , cd , change , chkdsk , chkntfs , choice , cipher , cleanmgr , clip , cmd , color , comp , con2prt , copy , date , defrag , del , delprof , dir , diruse , diskcomp , diskcopy , doskey , dsadd , dsmod , echo , endlocal , erase , exit , expand , fc , fdisk , find , findstr , for , forfiles , format , fsutil , ftp , ftype , global , goto , help , hfnetchk , if , ifmember , ipconfig , kill , label , ldifde , local , logevent , logoff , logtime , mapisend , md , mem , mode , monitor , more , mountvol , move , moveuser , msg , msiexec , msinfo32 , mstsc , munge , mv , nbtstat , net , netdom , netsh , netstat , netsvc , now , nslookup , ntbackup , ntrights , path , pathping , pause , perms , ping , popd , portqry , print , prncnfg , prnmngr , prompt , pushd , qgrep , rasdial , rasphone , rd and , rdisk , recover , reg , regedit , regsvr32 , rem , renc , replace , rmtshare , robocopy , route , runas , rundll32 , sc , schtasks , sclist , scriptit , set , setlocal , setx , share , shift , shortcut , showgrps , showmbrs , shutdown , sleep , soon , sort , start , su , subinacl , subst , tasklist , time , timeout , title , touch , tracert , type , ver , verify , vol , where , whoami , windiff , winmsd , winmsdp , wmic , xcacls , xcopy ,
Live2Support.com :
Product - Benefits - Features - How Does it Works - Pricing - SSL Certificates - Signup - Contactus - Login - Submit Resources