How to prompt for variable in a batch file?
For those that wanted to prompt users for information on their batch script, here is how you can do this.
@echo off
echo “Enter your name”
set /p Name=
echo “Enter your password”
set /p Password=
echo %Name% %Password%