Skip to main content

BATCH FILE SCRIPTING

WHAT IS BATCH FILE SCRIPTING?
-> THE batch file scripting is a type of coding which was exicuted only on windows machines, with the help of the CMD .
The code is basically writen with the help of the notepad. and its save with the extension of .bat |


THERE ARE SEVERAL COMMANDS FOR THE . BAT SCRIPTING ..
THE MOST COMMON AND USEFUL  CODES ARE ->>


TITLE
This batch command sets the title displayed in the console windowS.
DISKPART
This batch command shows and configures the properties of disk partitions.
TREE
This batch command displays a tree of all subdirectories of the current directory to any level of recursion or depth.
SHUTDOWN
This batch command shuts down a computer, or logs off the current user.
TIME
This batch command sets or displays the time.
EXIT
This batch command exits the DOS console.
CLS
This batch command clears the screen.
CD
This batch command helps in making changes to a different directory, or displays the current directory.
Creating Batch Files
Batch files are normally created in notepad. Hence the simplest way is to open notepad and enter the commands required for the script. For this exercise, open notepad and enter the following statements.

Saving Batch Files

After your batch file is created, the next step is to save your batch file. Batch files have the extension of either .bat or .cmd. Some general rules to keep in mind when naming batch files −
  • Try to avoid spaces when naming batch files, it sometime creates issues when they are called from other scripts.
  • Don’t name them after common batch files which are available in the system such as ping.cmd.

Modifying Batch Files

Following are the steps for modifying an existing batch file.
  • Step 1 − Open windows explorer.
  • Step 2 − Go to the location where the .bat or .cmd file is stored.
  • Step 3 − Right-click the file and choose the “Edit” option from the context menu. The file will open in Notepad for further editing.

Executing Batch Files

Following are the steps to execute a batch file −
  • Step 1 − Open the command prompt (cmd.exe).
  • Step 2 − Go to the location where the .bat or .cmd file is stored.
  • Step 3 − Write the name of the file as shown in the following image and press the Enter button to execute the batch file.

Comments

Popular posts from this blog

How to install turbo c on Mac and fix the problems

TO KNOW MORE PLEASE WATCH THE VIDEO Here is the download list:- https://drive.google.com/open?id=1fSJ22sZoB7GF7nIHGJdzgXkdwL6qdsqZ PROCEDURE:- DOWNLOAD THE FILE FROM THE GIVEN LINK. MOVE THE FILE TO THE DESKTOP. UNZIP THE FILE. OPEN THE C.BAT FILE AND CHANGE THE "DEEPAYAN" WITH YOUR USERNAME, AND SAVE THE FILE.  DONT CHANGE ANY FILENAME OR FOLDER NAME.  THANKS, HAPPY CODING.......

How to use a 16x2 lcd display with Arduino

So today I will tell you how to use the 16x2 LCD display on the Arduino projects. If you are doing any kind of projects then you should interact with the user in the simplest process.To add any kind of output device is the key to simplify that project. you may show the options or the compilation details using that.  There various types of displays available in the market but among them the 16x2 LCD display is the famous and cheapest one.As it has a very simple process to implement them in the projects. pinout for the 16x2 LCD display: circuit diagram for 16x2 LCD display: Test code to check the connection is properly done or not: /*   LiquidCrystal Library - Test code   #DNY  Demonstrates the use a 16x2 LCD display.  The LiquidCrystal  library works with all LCD displays that are compatible with the  Hitachi HD44780 driver. There are many of them out there, and you  can usually tell them by the 16-pin interface.   The circuit:  * LCD RS pin to

HOW SSH PROTOCOL WORKS

What is SSH? SSH stands for secure shell.  It is a networking protocol which is used to secure the data flowing between the SSH client and the servers over a public network such as the Internet. WORKING:- When a client tries to connect to its SSH server its needs to be verified. To establish a secure connection between them. In this protocol, this verification is completed using the exchange of cryptographic keys. And after when the client and the server are successfully connected, the process of transmission of data takes place.  But the data in an encrypted form. So as a result, a secure tunnel like security system is formed. In general, the port 22 is used for this SSH connection. USES:- SSH is famous among the network administrators. Because it helps them to manage their systems and applications remotely, allows them to log in to another system or computers over a public network, execute commands and move files from one device to another.