Piping in the Y - for yes

  • Thread starter Thread starter LWG
  • Start date Start date
What's the command? Some offer it as a switch, /Y

You can also try:

@echo Y|your command here.

Ray at work
 
In said:
How can I pipe in a yes for automatically answering in a batch file?

That may depend on what exactly needs the "Y". Different programs may
work differnetly. Some commands accept "/Y" switch. Some programs
will work if you
echo/|program.exe or
echo/ Y | program.exe

Any specific thing?
 
Back
Top