|
Answer» Hi all,
I NEED to parameterzie few VALUES, i am using this below command, for ending each input, i have to
PRESS "ENTER","F6" AND again "ENTER". My CLIENT was not intersted in doing this. Is there is any other
command to get input? or how i have to proceed further.
FOR /F "tokens=*" %%A IN ('TYPE CON') DO SET INPUT=%%A
Regards, Mohamed Asif KPNot REALLY sure what you are requesting.
You can use set /p input=Enter value: to get data from the user. You can run consecutive set commands if you need multiple values.
|