Table of Contents

Dos - User Interaction

About

The user interaction is done through:

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