Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Batch File Prompts
Name: mep Date: September 17, 2003 at 12:25:09 Pacific OS: Assortment CPU/Ram: Not enough
Comment:
I am writing batch file that needs to respond to a generated prompt. For example, in my batch file I call
titerun -rp data.txt
Titerun requires the user to press any key to continue running. How can the batch file respond to the generated prompt.
Name: JackG Date: September 17, 2003 at 14:48:44 Pacific
Reply:
Something standard like:
titerun -rp data.txt <response
where "response" is a short text file with the keyboard character to respond with and a Carriage Return, or a multiline text file. Has always been the standard redirected Input/Output method for DOS and Batch files. (Now trying to do this with a Windows application is a different issue.)
Summary: Hello, I've been looking around on the web, to little avail. My need is to have a batch file prompt the user for input (which will be a date in the format of YYYYMMDD), and put the response in a vari...
Summary: Is there any way to input a text value from a batch file prompt? Like "What would you like to name this file?" or "What comment do you want to add to this registry backup?" Thanks. ...
Summary: Hello, I am trying to create a batch file that copies files from one drive to another. However, the files that I am copying to the new drive will take on a different name. Is there a way to create a...