Windows 10

8 Batch File Commands You Should Know

In this tutorial, we are going to see 8 batch file commands that you should know. To create batch files, no complicated programming language is required. However, it is essential to know the usual system commands and their functionality in batch files. So, before you try to write your own script, you should familiarize yourself with some commands. Below are some of the most important commands to master:

  • ECHO : displays the text of the commands executed on the screen
  • @ECHO OFF : hides the text of the commands executed on the screen
  • START : executes a file with the standard application
  • REM : specify a comment line
  • MKDIR/RMDIR : create/delete a directory
  • DEL : deletes the selected file(s)
  • COPY : copy the selected file(s)
  • TITLE : deals with the title of the CMD window
Batch File Commands List With ExamplesBatch File Commands List With ExamplesIn this tutorial, we are going to see a list of batch file commands with examples. Batch files are batch files that allow Windows users…Read More

Leave a Reply

Your email address will not be published. Required fields are marked *