Advertisement
Guest User

Untitled

a guest
Oct 15th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.31 KB | None | 0 0
  1. @echo off
  2. color 0a
  3. cls
  4. set /p Passwort=Geben sie das Passwort ein:
  5. if %Passwort%=Kekse goto Passwortrichtig
  6. goto c
  7.  
  8.  
  9. :Passwortrichtig
  10. echo Richtig!
  11. set /I X==Wirklich herunterfahren?
  12. if /I "%X%"=="Ja" goto e
  13. if /I "%X%"=="Nein" goto d
  14.  
  15.  
  16. :e
  17. echo test
  18.  
  19. :d
  20. exit
  21.  
  22. :c
  23. echo Falsch
  24. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement