Hello,
Im making a simple batch file...
basically i want to get some information for the user eg.
set /p NAME= Name:
set /p AGE= Age:
set /p FROM= Where you From:
after this, i would like it to create a batch file in the current directory like this:
@echo off
title Your Stuff
color f0
cls
Echo your name is : %NAME%
echo Your Age is : %AGE%
echo You Are From: %FROM%
echo.
PAUSE
Im making a simple batch file...
basically i want to get some information for the user eg.
set /p NAME= Name:
set /p AGE= Age:
set /p FROM= Where you From:
after this, i would like it to create a batch file in the current directory like this:
@echo off
title Your Stuff
color f0
cls
Echo your name is : %NAME%
echo Your Age is : %AGE%
echo You Are From: %FROM%
echo.
PAUSE