Script batch - SCELTA
Questo comando batch fornisce un elenco di opzioni all'utente.
Sintassi
CHOICE /c [Options] /m [Message]
Dove Opzioni è l'elenco delle opzioni da fornire all'utente e Messaggio è la stringa del messaggio che deve essere visualizzato.
Esempio
@echo off
echo "What is the file size you what"
echo "A:10MB"
echo "B:20MB"
echo "C:30MB"
choice /c ABC /m "What is your option A , B or C"
Produzione
Il programma precedente produce il seguente output.
"What is the file size you what"
"A:10MB"
"B:20MB"
"C:30MB"
What is your option A , B or C [A,B,C]?