Collections:
Other Resources:
What Is Windows Batch File
What is Windows Batch File?
✍: FYIcenter.com
A Windows batch file (also called batch program or batch script)
is a text file that contains one or more Windows commands
and has a .bat or .cmd file name extension.
When you run a batch file, Windows will use CMD.EXE program to runs the commands sequentially as they appear in the batch file.
Here is an example of a Windows batch file, Ping.bat:
@echo off echo Pinging google.com... ping google.com > ping.txt type ping.txt
If you run the above batch file, Windows will run 4 commands listed in the batch file one by one.
⇒ Commands Supported in Batch Files
⇐ Introduction of Windows Batch File
2017-12-04, ∼3817🔥, 0💬
Popular Posts:
How to remove reader_sl.exe from the startup application list to gain performance and reduce securit...
What Is the VIDEO_TS Folder or Directory on a DVD-Video (Movie) Disc? On a DVD-Video disc, usually a...
How to install the latest Lenovo ThinkPad Bluetooth driver on my Windows 7 system? I have downloaded...
I have a problem wiht the Drivers Video Card, I have a laptop HP dv6448se and the video card are a N...
What is Apache server? Apache server is an open-source free Web server software that runs websites. ...