Saved Bookmarks
| 1. |
Solve : can a *.bat answer prompted the questions automatically for a program?? |
|
Answer» I'm trying to make a batch file that will answer prompted questions automatically for a program. I need to click "next" 4 times and click "enter". Quote from: DaveIsRacerX on September 17, 2010, 07:42:21 PM I'm trying to make a batch file that will answer prompted questions automatically for a program. I need to click "next" 4 times and click "enter".Batch operates with a COMMAND LINE Interface. There is no way to click things with just batch. You will probably be able to ACCOMPLISH this with VBS, but not batch. Quote from: DaveIsRacerX on September 17, 2010, 07:42:21 PM I'm trying to make a batch file that will answer prompted questions automatically for a program. I need to click "next" 4 times and click "enter". Clicking "next" and "enter" sounds like you're DEALING with a GUI. Batch language barely knows Windows exists much less interacting with it. It is possible to create a response file for a command line program using redirection. For a Windows program you can use VBScript and program the keys (no mouse movements) needed to accomplish the task. There is a discussion of this going on in this thread. Check it out. Good luck. |
|