answersLogoWhite

0

How do you make a batch file that you can type on?

Updated: 8/16/2019
User Avatar

Wiki User

13y ago

Best Answer

Well, here is your answer:

type this on your notepad:

@echo off

title "your Title"

color 0a

set /p a="your question or whatever you want to ask"

later if you want to view the text the operator wrote for your question,type this:

echo %a%

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you make a batch file that you can type on?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What happens if you type in echo off in a batch file?

It will make the file work. Without it nothing will happen. Hope this helped!


What does the file type bat stand for?

batch


How do you edit your registry from a batch file?

You can only do it with regetit.exe, and plus if you are asking to change it with a batch file ... trying to make a virus?


How do you make a batch file?

To create a batch file, click on Start > All Programs > Accessories > Notepad.Enter the commands you would like to execute.Click on File > Save. When prompted for a file name, you must select the file type "All Files (*.*)". Make sure the file name ends in ".bat", such as "dostuff.bat".The file will be saved in the folder you specified. It can be executed by double-clicking on the file.


Why does this batch file closes whenever you type in a command that has a symbol or space in it how do you fix this?

A batch file will close when it reaches the last line of code or an error.


How do you get a full screen batch file on windows vista?

You can't make the batch file automatically open up in fullscreen mode, but you can do this: @echo off mode 800 "Commands here" This will open the batch file in a rather larger-than-normal window, but it will not be in fullscreen, the user of the batch file must click the maximize button to make it fullscreen.


How do you make a batch file to move files?

in your batch file type: Move (the directory or folder and the file) space (the directory you want it in) example: move "C:\Users\%username%\Desktop\text.txt" "C:\Users\%username% You can change the %username% to your username but %username%is the variable for your username


What is the extension of batch file?

the extension of a batch file is ".bat"


How do you display the content of the variables captured in a DOS batch file later on in the same batch?

Simply type echo %variablename%


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.


How To create Directory Using Batch File?

You can make a folder with batch by using the command: md Foldername Example: @echo off md WikiAnswers exit The batch file would make a folder named WikiAnswers, and it would appear on your desktop


How can you run a file on startup using CMD?

Make a batch file. Open up notepad, type in the commands just like you would if you had a C:\prompt and choose "save as." When you save it, remove the .txt extension & use .bat instead. Batch files can be executed just like an .exe, any commands in the batch file are put to a command prompt & executed. So just put the batch file (or a shortcut to it) in programs/startup in your start menu & youre done!