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, ∼3908🔥, 0💬
Popular Posts:
What is the "SCNotification.exe" process on windows 7? Is the "SCNotification.exe" process a virus? ...
How to use IMDisplay to display an image file? If have image file called wizard.jpg and want to use ...
What is "Visual Studio Standard Collector Service 150" in my Windows 7 service list? And how is "Vis...
What is "Secondary Logon" in my Windows XP service list? And how is "Secondary Logon" service relate...
Where to find tutorials on using Windows 8 Installed Programs and software? Here is a collection of ...