Home > Net >  Why is variable my batch file not working?
Why is variable my batch file not working?

Time:11-24

i wrote

@echo off
SET /p filevui = FileName: 
echo %filevui%

and it says

'%filevui%' is not recognized as an internal or external command, operable program or batch file.

pls help me

CodePudding user response:

Try this:

SET /P filevui=Filename:
echo %filevui%
  • Related