Situatie
Cum sa generezi un anumit numar de parole fara a avea acces la internet, folosindu-te de un “batchfile”
Solutie
Pasi de urmat
In acest fisier copiem urmatorul script :
@echo off
:Start2
cls
goto Start
:Start
title Generator Parole
echo Voi crea o parola pentru tine.
echo Noteaza parola pe ceva, pentru a nu fi uitata.
echo —————————————-———————–
echo 1) 1 Parola
echo 2) 5 Parole
echo 3) 10 Parole
echo Alege cate parole vrei sa generezi.
set input=
set /p input= Choice:
if %input%==1 goto A if NOT goto Start2
if %input%==2 goto B if NOT goto Start2
if %input%==3 goto C if NOT goto Start2
:A
cls
echo Parola ta este %random%
echo Alege ce vrei sa faci.
echo 1) Du-te inapoi.
echo 2) Iesi din aplicatie.
set input=
set /p input= Choice:
if %input%==1 goto Start2 if NOT goto Start 2
if %input%==2 goto Exit if NOT goto Start 2
:Exit
exit
:B
cls
echo Cele 5 parole sunt %random%, %random%, %random%, %random%, %random%.
echo Alege ce vrei sa faci.
echo 1) Du-te inapoi.
echo 2) Iesi din aplicatie.
set input=
set /p input= Choice:
if %input%==1 goto Start2 if NOT goto Start 2
if %input%==2 goto Exit if NOT goto Start 2
:C
cls
echo Cele 10 Passwords sunt %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%
echo Alege ce vrei sa faci.
echo 1) Du-te inapoi.
echo 2) Iesi din aplicatie.
set input=
set /p input= Choice:
if %input%==1 goto Start2 if NOT goto Start 2
if %input%==2 goto Exit if NOT goto Start 2
Leave A Comment?