Dos - User Interaction
About
The user interaction is done through:
- the choice command (List choice)
Articles Related
Syntax
Set
SET /P <var>=[<prompt message>]
Example
Set
SET /P theName=What is your Name ? :
What is your Name ? : Nico
echo Hello %theName%
Hello Nico