answersLogoWhite

0


Best Answer

you really shouldn't have to do that. If it is still a .bat file and hasn't been converted into a .exe, you could just edit and remove every line that says PAUSE and change the variables so they don't prompt the user for input. (Change "set /p variable=" into set variable=(value) )

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you send the enter command to an active window in a batch file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What command clears all previous entries in the command prompt window?

To clear the Command Prompt window, enter CLS


How do you answer Y in a batch file automatically?

Each command has its own way of telling it to bypass confirmation. Enter <command> /? for a description of the switches you can use with that command.


What command clears the command prompt window?

Typing in "cls" without the quotes and hitting enter will clear the command prompt window (DOS window) and show you just the current prompt such as "C:". If you search for "dos commands" you should find some lists of things that are available when you are in the command prompt. But be aware that not all are active on all computers and some commands can delete files and do other things that you may not really want. -)


How do you open the command prompt window?

Start > Run, and enter "command." It should also be available in the Accessories menu.


What command line line can you enter into the command prompt window to view the location of the activate recovery image?

activaterecoveryimage.pdf


How do you know active window folder in windows xp where two windows folder is availabel in c drive?

Go to run and type Temp then enter, a window will open that will show you active window.


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.


What command allows you to see interface ip addresses?

In Windows, go to Run..Type 'cmd' then enter. A command line window will open. At the command prompt type ipconfig /all in the opened window and enter. If you're behind a router, or firewall. There is a related link below, click on that and you will see your IP.


How do you execute commands in a batch file in timed intervals?

You can use START with the /WAIT switch and TIMEOUT. Enter "START /?" and "TIMEOUT /?" at a command prompt for details.


When I run a batch file I can open another one in it but how do I make it so that when I open it the rest of the file doesn't exacute until the opened one exits?

Use the CALL command. Enter "CALL /?" at the command prompt for details.


How do you open a command prompt window without restarting wimdows 2000?

There are several ways to open a command prompt window on Windows 2000. One way is to click Start, then Run, type cmd.exe, and finally press Enter.


How does batch file work?

batch files are used to make long tasks shorter. for example, If I wanted to change the file extension of every file in the folder EXAMPLEFOLDER from .txt to .doc, I could make a batch file that did that instantly, rather than going into the properties of every file and changing the extension manually