Skip to main content

MS-DOS Batch Files

This Article Contain:

Introduction to MS-DOS Batch Files
Create a Simple Program
How to Get Command Prompt and its commands
Matrix Program

Introduction to MS-DOS Batch Files

Batch files are not a program. It consists of commands and batched in to a one file. That file called as Batch file. It is easy to make batch files. If you can think lot may be you can make an advance batch file. Just Think.

Create a Simple Program

Example:
@echo off
C:
Cd\
Tree /f /a
Echo Did you see directory of your C drive
Pause


Type above example in Notepad and save it as any name you prefer and extensions should be .cmd of .Bat.


Example:- MyBatchProgram.cmd or MyBatchProgram.bat

Run that file.

That is called Batch program. If you type above command lines in MS-DOS command Prompt then you’ll get same kind of results. Different is you have to type each command by command instead of double clicking the batch program.

How to Get Command Prompt and its commands

You can learn commands in MS-DOS by typing help in MS-DOS Command Prompt. To get that,
Go to Start > Run and Type Cmd or Command. In the command prompt type HELP. You will get lots of commands. If you need more help about each program shown in command prompt Type particular program name and /? after the program’s name.

Example:- tree /?

Matrix Program

Example:
@echo off
cls
:start
color 0A
echo 100 000000 0010 010010 101 01110 111000 0 1111 0100 0001 11 110 01
echo 010011 0101 011 01 010 101010 10 101101 110 110110 10110 11 01101101 11
echo 11110111 101 10 1 01 111100 10 01 100 0000101 1 11101 000110 01 011 01
echo 100 000000 0010 010010 101 01110 111000 0 1111 0100 0001 11 110 01
echo 0101000 0000 0 00 0 0011101 11010 11011 1011 1011011000 0 1 1000000011
echo 11110111 101 10 1 01 111100 10 01 100 0000101 1 11101 000110 01 011 01
Goto start


Save above program as MATRIX.CMD or MATRIX.BAT. This file found from Internet who has implemented his creative idea.

More Batch file Help is coming near future…..
(If you are hurry please forward your problem to lasanthaindrajith@gmail.com)

Author
Lasantha

Comments

Popular posts from this blog

How To Disable Export Button In Crystal Report When you are taking crystal report printouts through a program, such as program written using vb6. you might have a problem how to disable Export button in print preview. All you have to change following property to false or Uncheck the Export option in Property Pages. You CR.WindowShowExportBtn = False Crystal Report Object in Visual Basic 6. (CR is refer to Crystal Report Object ) You can go to Property Pages by right click and choose Properties on Crystal Report Object After you done those things you crystal Report print preview will showing like follows. I was face to above problem. We implemented a software program which is written using vb6. Cashier can take daily sale print out. before printing it is showing a preview to the user. So when the time pass user click export button and saved that report as a excel file. Then he modified the values and took printout to the management. That gives Security problem to the program a...

Execute *.sql with .NET

Do you ever want to execute slq statements at once. I mean SQL Script file. Normally we are using like following commands to Execute Single SQL statement. SqlCommand cmd = new SqlCommand(sSQL, conn); cmd.ExecuteNonQuery(); cmd.Dispose(); but this way you can execute one command at a time. We cannot execute SQL script using above command. Normal SQL Script Like this. if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[FK__titleauth__au_id__0519C6AF]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1) ALTER TABLE [dbo].[titleauthor] DROP CONSTRAINT FK__titleauth__au_id__0519C6AF GO CREATE TABLE [dbo].[authors] ( [au_id] [id] NOT NULL , [au_lname] [varchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [au_fname] [varchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [phone] [char] (12) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [address] [varchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [city] [varchar] (20) COLL...

Magento DB access denied

I got this error suddenly while accessing the magento site. SQLSTATE[HY000] [1129] Host 'user.workgroup' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' Solution use below command in console mysqladmin flush-hosts or log in to  mysql with a different host if its implemented on network environment and use below statement; FLUSH HOSTS; Or Restart the mysql server