Wie starte ich ein Programm per .bat mit vorheriger "Ja" "Nein" Abfrage?

1 Antwort

:frage
echo Notepad starten?
set INPUT=
set /P INPUT=Type input: %=%
If /I "%INPUT%"=="ja" goto ja
If /I "%INPUT%"=="j" goto ja
If /I "%INPUT%"=="nein" goto nein
If /I "%INPUT%"=="n" goto nein
goto frage

:ja
start notepad
goto weiter

:nein
echo Dann halt nicht...
goto weiter

:weiter
pause