1
I’d like to know how do I make that on the screen of script in Batch appear:
"Please enter your name"
Thank you, any help is welcome
1
I’d like to know how do I make that on the screen of script in Batch appear:
"Please enter your name"
Thank you, any help is welcome
0
Use the set
@echo off
set /p NOME="Por favor insira seu nome: "
echo Bem-vindo %NOME%
The /p
is to display a message before reading the user input.
Browser other questions tagged batch
You are not signed in. Login or sign up in order to post.
He doesn’t allow anyone to insert anything :/
– Santiago