habe mir ebend mal ein kleines Batch-script zusammengebastelt und brauche noch zum Abschluss 2 kleine Ergänzungen.
1. Wenn ich eine falche Auswahl treffe soll eine Fehlermeldung kommen.
2. Gross/Kleinschreibung sollte ingnoriert werden.
Ich hoffe das ich hier eine vernünftige klare Antwort bekomme und JA ich habe schon Gegoogelt.
Hier mein Quelltext:
cls :AUSWAHL CLS @echo off echo Backup-Skript echo ============= echo. echo [1] Dateien von DISK nach HDD kopieren echo [2] Dateien von HDD nach DISK kopieren echo. echo [q] Programm BEENDEN echo. echo. set asw=0 set /p asw="Bitte Auswahl eingeben: " CLS if %asw%==1 goto DISKtoHDD if %asw%==2 goto HDDtoDISK if %asw%==q goto ENDE :DISKtoHDD CLS copy C:\DISK D:\HDD /-Y echo Fertig pause goto AUSWAHL :HDDtoDISK CLS copy D:\HDD C:\DISK /-Y echo Fertig pause goto AUSWAHL :ENDE end