answersLogoWhite

0


Best Answer

Hey want to learn batch?? Well a batch file does not need a program (I.E a compiler or interpreter) like in other languages like C++ and Python. No a batch file is just saved a certain way.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What program do you use to open a batch file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How to create a batch file and impliment it?

To create a batch file open notepad, textedit, or whatever editor you wish to use. Once open write your program, check for errors, and "make simple text." Save this program as whateveryouwant.bat. Open the file and the batch file will execute.


What program can you use to open an abw file?

tinyword.com There, they provide the program needed to open an .ABW file.


How do you enter username and password with a batch file?

You can use the run as command in the batch file if you are using windows xp and i think with wondows 2000, unfortunatly it is open text so you have to use another programme to do that.


How does one open a 3GP file?

The best way to open a 3GP file is to double click on the file and to let the computer decide what program to use to open it. If your computer cannot open the file, then you will need to download a program that can open this kind of file.


What program do you use to open p7s files?

open p7s file


How do you using winzip file?

You have to use winzip. There is no other program that can open this file


In Microsoft Windows typically happens by default when a file is double-clicked?

then it opens the file if i dont knows with program he must use you get an choice menu where you can choose an program to open it with


Cumpoter file how to open?

Depending on the format of the file, you often need a specialized program to open it. For example, to open a JPG (image) file, you need a program that can handle images, to open a Word document, you need Word (or other compatible programs), etc.You can often open the file by double-clicking on it (for example, in Windows Explorer); or you open the program that is supposed to use it, and give a command like "File | Open".Depending on the format of the file, you often need a specialized program to open it. For example, to open a JPG (image) file, you need a program that can handle images, to open a Word document, you need Word (or other compatible programs), etc.You can often open the file by double-clicking on it (for example, in Windows Explorer); or you open the program that is supposed to use it, and give a command like "File | Open".Depending on the format of the file, you often need a specialized program to open it. For example, to open a JPG (image) file, you need a program that can handle images, to open a Word document, you need Word (or other compatible programs), etc.You can often open the file by double-clicking on it (for example, in Windows Explorer); or you open the program that is supposed to use it, and give a command like "File | Open".Depending on the format of the file, you often need a specialized program to open it. For example, to open a JPG (image) file, you need a program that can handle images, to open a Word document, you need Word (or other compatible programs), etc.You can often open the file by double-clicking on it (for example, in Windows Explorer); or you open the program that is supposed to use it, and give a command like "File | Open".


How do you open cfg extention file?

A .ctg file extension is a computer configuration file. You would need a special type of program or software to open or convert this type of file. To open a .cfg extension file, use a program called Free File Viewer.


How do you send commands to a command-line EXE program from a batch?

Just put the commands in your batch file. When someone runs the program, it will execute the commands it comes across line-by-line. - Example Batch Script: This script will run an application EXE file with command line parameters. This will use the shutdown.exe file that comes with windows. It shuts down the computer in 60 seconds. @shutdown -s -t 60 - You could also use the START command. For any command or exe file that runs from the command line, you could open a command prompt and type the name of the file followed by /? to find out what you can use as command parameters. Example: START /?


What program do you use to open a xfdl file?

pure edge viewer


How do you name a batch program?

Assuming you mean a shell script (AKA batch file), you simply add a .bat as the extension to any plaintext file. There is no limitation for the actual filename aside from this (except for regularly unallowed charachters like > and /). For instance, if you wanted to name your batch file hello world, you would open up a new notepad document, enter your code, then save as File Name: hello world.bat and change the Save as Type: All Files. Windows automatically recognizes any file with the .bat extension as an executable batch file, so to run it, you would just double-click it like any other document or file. To edit the batch file again, you can right click it and select Edit, or use notepad to open it from its respective location. Hope that answers your question.