So basically I have a batch file that requires alot of user input. I was wondering if it was possible to have any filler data already present when the question is asked, and
Another alternative is ReadLine.exe:
@echo off set NAME=First Last for /f "delims=" %%n in ('ReadLine -p "Enter name: " -- %NAME%') do set NAME=%%n echo You entered: %NAME%
You can get it from http://www.westmesatech.com/misctools.html. Source code is included.