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, ∼3685🔥, 0💬
Popular Posts:
Where to find information about what processes are running on Windows 7 and how to manage them? I wa...
How do I improve the touch sensitivity on my PC 1. Adjust the pen and touch settings in the Control ...
How to select your wireless connection during the Windows 7 system initial set up process? If you bo...
Where to find tutorials on managing Windows 8 startup programs? Here is a collection of tutorials on...
Have a windows 8 computer and need to download the Visual C++ Redistributable for visual studio 2012...