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, ∼3852🔥, 0💬
Popular Posts:
How to verify IIS configuration for PHP scripts? If you have followed our Configuring IIS for PHP Sc...
What is "Protexis Licensing V2" in my Windows 7 service list? And how is "Protexis Licensing V2" ser...
How to remove WZQKPICK.exe from the startup application list to gain performance and reduce security...
Where to find tutorials on Internet Explorer (IE) 7. Here is a list of tutorials to answer many freq...
Where are services hosted by "svchost.exe -k DcomLaunch" on Windows 7? What is the meaning of "-k Dc...