Friday, March 30, 2012

Make a random password generator from notepad....................................................


How To Create Password Generator Using Command Prompt

How To Create Password Generator Using Command Prompt

1. Click on start -> run -> notepad.
2. Copy the below code in to notepad.

@echo off
:a
echo Here are 3 random passwords
echo %random%, %random%, %random%
pause
cls
goto a
3. Now save the notepad as  Generator.bat.
Note: Save the file by clicking on File Type-> All Files.
4. There fore password generator is created.

It only generates 3 passwords at at time.

2 comments: