Advertisement
Guest User

Passwort-Generator.bat

a guest
Dec 12th, 2018
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. @echo off
  2. title Passwort-Generator
  3. :home
  4. color b
  5. cls
  6. echo.
  7. echo.
  8. echo Passwort-Generator
  9. echo.
  10. echo ________________________
  11. echo.
  12. echo 1. 1 Passwort Generieren
  13. echo.
  14. echo 2. 3 Passwoerter Generieren
  15. echo.
  16. echo 3. 5 Passwoerter Generieren
  17. echo.
  18. echo 4. Schliessen
  19. echo _________________________
  20. set /p "ch=Auswahl > "
  21. if %ch%==1 goto pw1
  22. if %ch%==2 goto pw3
  23. if %ch%==3 goto pw5
  24. if %ch%==4 exit
  25. color 4
  26. echo.
  27. echo Diese auswahl ist ungueltig!
  28. timeout /t 3 >nul
  29. goto home
  30. :pw1
  31. cls
  32. color a
  33. echo Dein Passwort ist %random%
  34. pause
  35. goto home
  36. :pw3
  37. cls
  38. color a
  39. echo Deine Passwoerter sind %random%, %random% und %random%
  40. pause
  41. goto home
  42. :pw5
  43. cls
  44. color a
  45. echo Deine Passwoerter sind %random%, %random%, %random%, %random% und %random%
  46. pause
  47. goto home
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement