HELP!!!
I need to make a batch file default every y/n input required by a command used to "y".
Any ideas?????????
Thanx
Printable View
HELP!!!
I need to make a batch file default every y/n input required by a command used to "y".
Any ideas?????????
Thanx
Need to be more specific but could try...
echo Y|program > nul
or
program < y.txt
(need to create the input file y.txt)
Some command line programs also accept the /Y option as well.